FFMPEG

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

Attached: 1552642183461.png (484x384, 31K)

Other urls found in this thread:

github.com/nu774/qaac/releases
github.com/nu774/qaac/releases/download/v2.68/qaac_2.68.zip
rarewares.org/lossless.php
rarewares.org/files/lossless/flac_dll-1.3.2-git-20181116-x64.zip
github.com/nu774/qaac/wiki
trac.ffmpeg.org/wiki/Encode/AAC
github.com/mstorsjo/fdk-aac
twitter.com/AnonBabble

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

Attached: file.png (1116x441, 41K)

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