ffmpeg文件切片

先用ffmpeg把abc.mp4文件转换为abc.ts文件:

ffmpeg -y -i abc.mp4 -vcodec copy -acodec copy -vbsf h264_mp4toannexb abc.ts

再用ffmpeg把abc.ts文件切片并生成playlist.m3u8文件,5秒一个切片:

ffmpeg -i abc.ts -c copy -map  -f segment -segment_list playlist.m3u8 -segment_time  abc%03d.ts

也可以直接将.mp4文件直接转换

windows环境直接指向路径 ffmpeg -i G:\text\1.mp4 -c copy -map 0 -f segment -segment_list G:\text\playlist.m3u8 -segment_time 5 G:\text\abc%03d.ts
上一篇:Angularjs学习笔记《一》


下一篇:【POJ 2983】Is the Information Reliable?(差分约束系统)