soundcheck wrote: > > Do you need a flac stream to figure out the actual samplerate for "E", > or is it also working with PCM/wav streams? I'd assume that "X" will > always work, whatever stream format is coming down. > What is "flags" ? >
Should work for flac and pcm (and any other codec) Normally resampling is synchronous, so specifying just -R will resample to the highest rate supported by the device which is a multiple of the source sample rate. E = only resample if the output device doesn't support the sample frequency (by "Exception"). This means that you can listen normally with native sample rate, but if you have some material which is not supported by the device then it only resamples when you play this. When resample by exception is used without "X" resampling remains sychronous when selected - i.e. to a multiple of the source sample rate. X = asynchronously resample to the max sample rate of the device which may not be a multiple of the source sample rate. You may chose this if you device only supports 96k/192k etc and you want to resample 44.1/88.2/176.4 material to this. flags is only useful if you understand the inner workings of libsoxr - allows you to pass the flags field direct to the soxr_quality_spec() function call in libsoxr. ------------------------------------------------------------------------ Triode's Profile: http://forums.slimdevices.com/member.php?userid=17 View this thread: http://forums.slimdevices.com/showthread.php?t=97046 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
