FFmpeg 디코딩 AC3 오디오

FFmpeg 디코딩 AC3 오디오

AC3 형식의 오디오 디코딩을 만들고 다이나믹 레인지를 적용합니다.

ffmpeg -i input.ac3  -c:a  -drc_scale 1 output.wav

ffmpeg에서 오류가 발생합니다.

unable to find a suitable output format for '1'
1: Invalid argument

옵션이 적용되지 않는 이유를 알려주세요. 왜 오류가 나오나요?

답변1

디코더 옵션은 입력 이름 앞에 옵니다.

ffmpeg -drc_scale 1 -i input.ac3 output.wav

관련 정보