ffmpeg 命令实现h264文件 与 mp4 文件的转换

标题

  • 1. mp4 -> h264
  • 2. h264 -> mp4

1. mp4 -> h264

xxx 为你的视频名称

ffmpeg -i xxx.mp4 -codec copy -bsf: h264_mp4toannexb -f h264 xxx.264

2. h264 -> mp4

xxx 为你的视频名称

ffmpeg -f h264 -i xxx.264 -vcodec copy xxx.mp4

你可能感兴趣的:(经验详谈,音视频)