lekt player
Re: lekt player
lekt.exe1644 v2.6
Now it's working.
Surprisingly good! Analog and tube amp signature. Like it so much.
Thank you.
Now it's working.
Surprisingly good! Analog and tube amp signature. Like it so much.
Thank you.
PC: CPU Q8400, 8GB Ram, Windows 8.1 x64
DAC: HRT Music Streamer II+, Asus Xonar Essence ST (+ HiEnd DYI upgrades)
DAC: HRT Music Streamer II+, Asus Xonar Essence ST (+ HiEnd DYI upgrades)
Re: lekt player
I think v1.8_v2 have better bass (multi-layer) than v2.6, so sound weigth and depth seem more correct. That play by reading from file is not bad method as people think, in this case i see better, v1.8_v2 used interesting read file method. maybe let pagefile.sys work in windows coz it well support for reading file. my Win8 use pagefile.sysJohn Dot wrote:lekt.exe1644 v2.6
Now it's working.
Surprisingly good! Analog and tube amp signature. Like it so much.
Thank you.
I will try more working with RAM versions.
-
- Posts: 2491
- Joined: Mon Oct 07, 2013 11:09 pm
Re: lekt player
don't like v2.6lekt wrote:I think v1.8_v2 have better bass (multi-layer) than v2.6, so sound weigth and depth seem more correct. That play by reading from file is not bad method as people think, in this case i see better, v1.8_v2 used interesting read file method. maybe let pagefile.sys work in windows coz it well support for reading file. my Win8 use pagefile.sysJohn Dot wrote:lekt.exe1644 v2.6
Now it's working.
Surprisingly good! Analog and tube amp signature. Like it so much.
Thank you.
I will try more working with RAM versions.
1.8_v2
-finally plays all files. no bugs!
-better better. emotion is kicking in!! need more more vibration/micro-details in vocal.
-loving the tune and vibration.
-stage is great.
-very mellow+good vibration on easily-hard-trebles. just good.
-sounds great on my new installed 7. also great on R2.
-earaches is close to nothing on headphones.
-deeper fuller than 1.8.1 and 1.8.0
(just installed VS2013 on 7. this ".NET Runtime Optimization Service" takes forvever to go away. just annoying)
Re: lekt player
heared XA's win7, interesting. win7 have low latency, easier setup. but most important versions audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing, i think Microsort take more care about these. in feature seem to be win8.1 is too, background audio services must better. i'll try its wasapi.jesuscheung wrote:...(just installed VS2013 on 7. this ".NET Runtime Optimization Service" takes forvever to go away. just annoying)
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), bad characteristic for realtime asynchronous transfer data. im probably wrong.
Re: lekt player
if lekt isn't wasapi what does it use ?lekt wrote:heared XA's win7, interesting. win7 have low latency, easier setup. but most important versions audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing, i think Microsort take more care about these. in feature seem to be win8.1 is too, background audio services must better. i'll try its wasapi.jesuscheung wrote:...(just installed VS2013 on 7. this ".NET Runtime Optimization Service" takes forvever to go away. just annoying)
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), bad characteristic for realtime asynchronous transfer data. im probably wrong.
how do you know audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing ? Do you have a link ?
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), that's very similar to what I put in the MQn thread, great minds think alike, eh.
Re: lekt player
exclusive mode, but on each step of loop client must transfer &nFramesInBuffer, &pData,... What is this, sbgk. there's like as shared mode. all time of playing use only 2 buffers: 1 for DAC, 1 for clients loading data, and then swap roles. but pData pointers it variable, not fixed. why? i think about how can i don't use GetBuffer(...). 3 WASAPIs function in render loop contains many, many inside works that i don't need (checking error, return many hr values,...). thanks to Microdoft but sorry Microsoft, i'm waiting for other WASSPIs version. computer player must be too much better, it's really, sbgk.sbgk wrote:if lekt isn't wasapi what does it use ?
how do you know audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing ? Do you have a link ?
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), that's very similar to what I put in the MQn thread, great minds think alike, eh.
-
- Posts: 2491
- Joined: Mon Oct 07, 2013 11:09 pm
Re: lekt player
why can't just be like the old days, read hard disk bit by bit bypassing the cache, send data to memory to DAC bypassing the OS control. everywhere i see there is a buffer from disk, CPU, player, dac etc. remember when i was kid playing DOS there was virtually no error checking, error was BSOD.lekt wrote:exclusive mode, but on each step of loop client must transfer &nFramesInBuffer, &pData,... What is this, sbgk. there's like as shared mode. all time of playing use only 2 buffers: 1 for DAC, 1 for clients loading data, and then swap roles. but pData pointers it variable, not fixed. why? i think about how can i don't use GetBuffer(...). 3 WASAPIs function in render loop contains many, many inside works that i don't need (checking error, return many hr values,...). thanks to Microdoft but sorry Microsoft, i'm waiting for other WASSPIs version. computer player must be too much better, it's really, sbgk.sbgk wrote:if lekt isn't wasapi what does it use ?
how do you know audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing ? Do you have a link ?
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), that's very similar to what I put in the MQn thread, great minds think alike, eh.
Last edited by jesuscheung on Sat Oct 26, 2013 11:36 am, edited 1 time in total.
Re: lekt player
you answer my questions and I'll answer yours, that's fair, don't you think.lekt wrote:exclusive mode, but on each step of loop client must transfer &nFramesInBuffer, &pData,... What is this, sbgk. there's like as shared mode. all time of playing use only 2 buffers: 1 for DAC, 1 for clients loading data, and then swap roles. but pData pointers it variable, not fixed. why? i think about how can i don't use GetBuffer(...). 3 WASAPIs function in render loop contains many, many inside works that i don't need (checking error, return many hr values,...). thanks to Microdoft but sorry Microsoft, i'm waiting for other WASSPIs version. computer player must be too much better, it's really, sbgk.sbgk wrote:if lekt isn't wasapi what does it use ?
how do you know audiodg.exe, AudioEndpointBuilder.dll, audiosrv.dll,... for win8 are good programing ? Do you have a link ?
currently wasapi have many, many things not good for render loop (error checking, return values, not use static variables,...), that's very similar to what I put in the MQn thread, great minds think alike, eh.
Re: lekt player
SSD difference HDD, i think SDD don't use chunk size 4096, maybe buffer, cache... is too, not sure. SSD can perfectly read from random address, disk deffractment seem no affect.jesuscheung wrote:why can't just be like the old days, read hard disk bit by bit bypassing the cache, send data to memory to DAC bypassing the OS control. everywhere i see there is a buffer from disk, CPU, player, dac etc. remember when i was kid playing DOS there was virtually no error checking, error was BSOD.
lekt v1.7, v1.8x have benefit with HDD, but with SSD not sure. i need to learn SSD technologue, maybe very interesting for reading file, JC.
-
- Posts: 2491
- Joined: Mon Oct 07, 2013 11:09 pm
Re: lekt player
i have HDD.lekt wrote:SSD difference HDD, i think SDD don't use chunk size 4096, maybe buffer, cache... is too, not sure. SSD can perfectly read from random address, disk deffractment seem no affect.jesuscheung wrote:why can't just be like the old days, read hard disk bit by bit bypassing the cache, send data to memory to DAC bypassing the OS control. everywhere i see there is a buffer from disk, CPU, player, dac etc. remember when i was kid playing DOS there was virtually no error checking, error was BSOD.
lekt v1.7, v1.8x have benefit with HDD, but with SSD not sure. i need to learn SSD technologue, maybe very interesting for reading file, JC.
do you know there is a freeware called RAMDisk 4.3.0 RC 1? could this be faster than SSD?