Open waynetrain opened 10 years ago
SoX - Sound eXchange works!
So far I have tried besides ffmpeg, libav and finally Sox audio proessing software. I ll give a short howto:
flacs are converted to mp3 on the fly with 320 kb/s by lame encoder
I dont know what is the issue with ffmpeg or libav approach. no matter what of them you use, some streams will be truncated immediately.
Hey, thanks for posting this information. I'm afraid I don't have the time to maintain Sockso any more, but hopefully other people will find this useful.
Hi, i use ffmpeg to transcode flac files into mp3 doing by batch ffmpeg -i %1 -vn -f mp3 -ab 320k -
This works well in most cases but somestimes audiostream truncates and ffmpeg remains in idle state. Then the only thing helping is to kill ffmpeg instance.
My Question: Is my Batch possibly wrong? All truncated tracks play very well when i do
ffmpeg -i music.flac -vn -f mp3 -ab -320k - | vlc -
Furthermore, my files contain in addation to the flac audiostream, cover art jpg 500x500 and id3 tags. People from #ffmpeg say possibly this could be an issue.
thx