How would I go about converting all these flac files to AAC with FFMPEG in one go?
It takes too long to do "ffmpeg -i input.flac output.aac" for every individual audio file
How would I go about converting all these flac files to AAC with FFMPEG in one go?
It takes too long to do "ffmpeg -i input.flac output.aac" for every individual audio file
Other urls found in this thread:
github.com
github.com
rarewares.org
rarewares.org
github.com
trac.ffmpeg.org
github.com
twitter.com
use a loop
since you're a scriptlet, foobar2000 has nice conversion options.
>put everything you want into a big playlist
>select all
>right click, Covert, ...
>setup however you like
>done
P Y T H O N
Y
H
O
N
or bash if you're a 30 year old boomer
literally just
for file in *.flac
do
ffmpeg -i "$file" "${file%%.flac}".aac
done
ignore this scriptcucks just use vlc
bash would be more simple for a simple task like this
for file in *.flac; do ffmpeg -i $file ${file%.flac}.mp3; done
I don't even know how to use this script
meant to quote
find -type f -iname "*.flac" | parallel -j4 --eta ffmpeg -i '{}' '{.}.aac';
Gotta go fast