사용자 도구

사이트 도구


사이드바

카테고리

tool:ffmpeg

FFMPEG

오디오 추출

1

ffmpeg -i mpeg-4videofilename -vn -ac 2 -ar 44100 -ab 320k -f mp3 output.mp3
 
# Explanation of the command line options:
# 
# -i input file
# -vn no video
# -ac audio channel
# -ar audio sample rate
# -ab audio bitrate
# -f output format

2

ffmpeg -i sample.mp4 -ss 00:00:00 -t 00:33:00.0 -q:a 0 -map a sample.mp3
 
# -ss : 시작시간
# -t : 플레이 시간
tool/ffmpeg.txt · 마지막으로 수정됨: 2022/07/10 14:00 저자 kieuns