“FFMPEG FLAC para WAV” Respostas de código

FFMPEG converte em WAV

ffmpeg -i filename.mp3 newfilename.wav
XeN0N

FFMPEG FLAC para WAV

# ffmpeg will not change sample rate unless you tell it to 
# (or the output codec does not support it, but then it will most probably fail). 
# So this should be enough:

ffmpeg -i input.flac output.wav

# ffmepg will however not preserve bit depth and default to 16-bit encoding, 
# so if your input is 24 bit, you have to use:

ffmpeg -i input.flac -c:a pcm_s24le output.wav
FishBrawler

Respostas semelhantes a “FFMPEG FLAC para WAV”

Perguntas semelhantes a “FFMPEG FLAC para WAV”

Mais respostas relacionadas para “FFMPEG FLAC para WAV” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código