Premiere v210 视频格式转换折腾记之FFmbc

2014-06-25 2231点热度 0条评论

说起这个格式,相信很多使用Adobe Premiere的用户应该还是很熟悉的,它可是Premiere内置的无损AVI默认使用的格式。。

但是Adobe你造吗?你这个格式害死多人人啊,除了你Adobe还有几个是支持这个格式的输入输出的啊。

今天客户送来52集动画片,全部都是用的这个v210编码的视频,一个13分钟的就能达到2g容量,而且还伴随着锯齿,坑爹啊!因为我们使用的是Edius,这个格式完全就是卡死人的节奏啊!!只好将其转换呗,但是导入常用的一些转换软件里面确实各种不支持啊!!

无赖之下只好使用神器——FFmbc
此工具是在FFmpeg的基础上针对广播影视而设计的,功能十分强大的呢~

Import your files in Final Cut Pro, AVID Media Composer, Adobe Premiere

  1. Create XDCAM HD422 files in .mov or .mxf
  2. Create XDCAM IMX/D-10 files in .mov or .mxf
  3. Create AVID DNxHD files in .mov
  4. Create DVCPROHD files in .mov or .mxf
  5. Create ProRes 422 or 4444 files in .mov
  6. Convert V210 Files
  7. Convert HD YUV BT709 to SD BT601 and vice versa
  8. Convert AVCIntra 50 and 100
  9. Convert MPEG-TS files with SMPTE 302M audio
  10. Convert AVCHD files correctly
  11. Convert ProRes 422 and 4444 files
  12. Rewrap IMX/D-10, AVCHD, DVCPROHD, MTS, M2TS to Quicktime for editing in Final Cut Pro
  13. Burn ASS or SRT subtitles files in videos
  14. Merge and split your audio tracks
  15. Create Quicktime files containing time code tracks
  16. Color conversion from HD to SD
  17. Read timecode tracks from MXF, Quicktime
  18. Creating audio files (mp3 and m4a) with cover art
  19. Keep or add covert art when converting your audio files
  20. Faststart MP4 for streaming (replace header in front) automatically


神器有了,那么就来说说神器是怎么用的吧,如下是我整理的一些常用参数

  1. -i 指定输入文件
  2. -f 指定输出文件
  3. -y 覆盖输出文件
  4. -loop_input 循环输入源
  5. -loop_output 循环输出源
  6. -r 指定帧速率(23、25、29.97等)
  7. -s 指定输出文件尺寸
  8. -aspect 指定画面比例(4:3, 16:9 or 1.3333, 1.7777)
  9. -vn 关闭视频输入源
  10. -an 关闭音频输入源
  11. -vcodec 指定视频编码(具体可以使用ffmbc -codecs查看)
  12. -ar set audio sampling rate (in Hz)
  13. -ac 设定音频声道数(一般为2-8的偶数)
  14. -acodec 指定音频编码(具体可以使用ffmbc -codecs查看)
  15. -vol 设定音频音量 (256=normal)
  16. -b 设定比特率 (in bits/s)
  17. -vb 设定视频比特率(例如:-b:v 1000k)
  18. -pass n 设定编码次数 (1-3)
  19. -ab 设定音频比特率(in bits/s)
  20. -target 指定预设类型(”vcd”, “svcd”, “dvd”, “dvcam”, “dvcpro”, “dvcpro50″, “dvcprohd”, “imx30″, “imx50″, “xdcamhd422″)
  21. -pix_fmt 指定分量类型(具体可使用FFmbc -pix_fmts查看)
  22. -vf scale=trunc(oh*a/2)*2:480 以480为高度自动设定高度

现在发一个我使用的命令吧~

:: 代码示例
:: usage: ffmbc [options] [[infile options] -i infile]... {[outfile options] outfile}...

ffmbc.exe -y -i %1 -vcodec libx264 -aspect 4:3 -r 25 -vb 10000k -maxrate 14000k -bufsize 1000k -threads 0 -acodec ac3 -ab 192k %1.mp4

ffmbc下载地址:传送门  |  FFmbc 源码:ffmbc源码

Jalena

原创内容,转载请注明出处! 部分内容来自网络,请遵守法律适用!

文章评论