说起这个格式,相信很多使用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
- Create XDCAM HD422 files in .mov or .mxf
- Create XDCAM IMX/D-10 files in .mov or .mxf
- Create AVID DNxHD files in .mov
- Create DVCPROHD files in .mov or .mxf
- Create ProRes 422 or 4444 files in .mov
- Convert V210 Files
- Convert HD YUV BT709 to SD BT601 and vice versa
- Convert AVCIntra 50 and 100
- Convert MPEG-TS files with SMPTE 302M audio
- Convert AVCHD files correctly
- Convert ProRes 422 and 4444 files
- Rewrap IMX/D-10, AVCHD, DVCPROHD, MTS, M2TS to Quicktime for editing in Final Cut Pro
- Burn ASS or SRT subtitles files in videos
- Merge and split your audio tracks
- Create Quicktime files containing time code tracks
- Color conversion from HD to SD
- Read timecode tracks from MXF, Quicktime
- Creating audio files (mp3 and m4a) with cover art
- Keep or add covert art when converting your audio files
- Faststart MP4 for streaming (replace header in front) automatically
神器有了,那么就来说说神器是怎么用的吧,如下是我整理的一些常用参数
- -i 指定输入文件
- -f 指定输出文件
- -y 覆盖输出文件
- -loop_input 循环输入源
- -loop_output 循环输出源
- -r 指定帧速率(23、25、29.97等)
- -s 指定输出文件尺寸
- -aspect 指定画面比例(4:3, 16:9 or 1.3333, 1.7777)
- -vn 关闭视频输入源
- -an 关闭音频输入源
- -vcodec 指定视频编码(具体可以使用ffmbc -codecs查看)
- -ar set audio sampling rate (in Hz)
- -ac 设定音频声道数(一般为2-8的偶数)
- -acodec 指定音频编码(具体可以使用ffmbc -codecs查看)
- -vol 设定音频音量 (256=normal)
- -b 设定比特率 (in bits/s)
- -vb 设定视频比特率(例如:-b:v 1000k)
- -pass n 设定编码次数 (1-3)
- -ab 设定音频比特率(in bits/s)
- -target 指定预设类型(”vcd”, “svcd”, “dvd”, “dvcam”, “dvcpro”, “dvcpro50″, “dvcprohd”, “imx30″, “imx50″, “xdcamhd422″)
- -pix_fmt 指定分量类型(具体可使用FFmbc -pix_fmts查看)
- -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
文章评论