ffmpeg

作者: 饭桶2018 | 来源:发表于2019-06-18 21:28 被阅读0次

trim

ffmpeg -i input.mp4 -ss 00:01:00 -to 00:02:00 -c copy output.mp4

merage

ffmpeg -f concat -i input.txt -c copy output.mp4

input.txt
file '1.flv'
file '2.flv'

flv2mp4

ffmpeg -i input.flv -c copy output.mp4

rename

ls *.mp4 | sed 's/\(.*\).flv\(.*\).*/mv & \1\2/' | sh

相关文章

网友评论

      本文标题:ffmpeg

      本文链接:https://www.haomeiwen.com/subject/ebjjxctx.html