截取与合并
- -ss 指定从什么时间开始
- -t 指定需要截取多长时间
- -i 指定输入文件
截取从头开始的30s
$ ffmpeg -ss 00:00:00 -t 00:00:30 -i input.mp4 -vcodec copy -acodec copy split1.mp4
截取从30s开始的30s
$ ffmpeg -ss 00:00:30 -t 00:00:30 -i input.mp4 -vcodec copy -acodec copy split2.mp4
进行视频的合并
$ ffmpeg -f concat -i list.txt -c copy concat.mp4
在list.txt文件中,对要合并的视频片段进行了描述。
内容如下
file ./split1.mp4
file ./split2.mp4
提取图片:
$ ffmpeg –i input.mp4 –r 1 –f image2 image-%3d.jpeg
字幕
转换字幕格式
$ ffmpeg -i subtitle.srt subtitle.ass
嵌入ass字幕
$ ffmpeg -i input.mp4 -vf ass=subtitle.ass output.mp4
嵌入srt字幕
$ ffmpeg -i input.mp4 -vf subtitles=subtitles.srt output.mp4
字幕样式与位置:
$ ffmpeg -i input.mp4 -vf "subtitles=target.srt:force_style='FontSize=20,Alignment=6'" output.mp4
Alignment 指字幕位置,可选值有:
• 1: Bottom left
• 2: Bottom center
• 3: Bottom right
• 5: Top left
• 6: Top center
• 7: Top right
• 9: Middle left
• 10: Middle center
• 11: Middle right
音频
合并音频与视频:
$ ffmpeg -i video.mp4 -i avdio.mp4 output.mp4
$ ffmpeg -i video.mp4 -i audio.m4a -acodec copy -vcodec copy output.mp4
$ ffmpeg -i video.m4s -i audio.m4s -codec copy output.mp4
抽取音频:
$ ffmpeg -i video.mp4 -vn -y -acodec copy avdio.aac
$ ffmpeg -i video.mp4 -vn -y -acodec copy avdio.m4a
转换
$ ffmpeg -i video.mkv -codec copy video.mp4
- older
- Newer