Hi, I'm a newbie in this forum...
Please tell me how to decompress flac 5.1 24bit 48 khz to wav 5.1 24bit/16bit 48 khz![]()
+ Reply to Thread
Results 1 to 3 of 3
-
Last edited by anana; 5th Mar 2015 at 05:44.
-
Code:
@ffmpeg -threads %NUMBER_OF_PROCESSORS%*1.5 -i %1 -vn -c:a pcm_s24le -af "aresample=resampler=soxr:dither_method=3" -y %1_24.wav @ffmpeg -threads %NUMBER_OF_PROCESSORS%*1.5 -i %1 -vn -c:a pcm_s16le -af "aresample=resampler=soxr:dither_method=3" -y %1_16.wav
Code:@sox --multi-threaded --buffer 524288 -S -V -D %1 -b 16 %1_16.wav dither -S -p 16 @sox --multi-threaded --buffer 524288 -S -V -D %1 -b 24 %1_24.wav dither -S -p 24
Last edited by pandy; 5th Mar 2015 at 06:18.