使用ffmpeg将avi转换为3gp [英] convert avi to 3gp using ffmpeg

查看:173
本文介绍了使用ffmpeg将avi转换为3gp的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将一个avi文件转换为3gp的编解码器作为mpeg4简单的配置文件级别0.但是,我无法使用ffmpeg,它给出了这个错误 - 请求的输出格式'-vcodec'不是一个合适的输出格式谢谢提前
注意 - 输入avi是从bmp图像生成的720x480使用ffmpeg与编解码器ffv1.输出3gp应该是mpeg4简单的配置文件级别0

解决方案

尝试这个..希望这将有助于您

  ffmpeg -i input.AVI -acodec libfaac -ab 128k -ar 44100 -s 704x400 -r 20 -vcodec libx264 -b 256000 -cmp + chroma -partitions + parti4x4 + partp8x8 + partb8x8 -me_method umh -subq 5 -trellis 1 -refs 2 -bf 1编码器1 -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 256000-maxrate 4M -bufsize 4M -rc_eq'blurCplx ^(1-qComp)'-qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4-level 21 output.3gp 

这将把你的avi转换成3gp。请根据需要尝试不同的格式作为输入和输出文件



注意: - 根据您的需要更改参数,如level


I want to convert an avi file to 3gp with codec as mpeg4 simple profile level 0.But i am not able to do it with ffmpeg,it gives this error-Requested output format ‘-vcodec’ is not a suitable output format.how to fix this help!thanks in advance note - the input avi is 720x480 generated from bmp images using ffmpeg with codec ffv1.the output 3gp should be of mpeg4 simple profile level 0

解决方案

Try this.. Hope this will help you

ffmpeg -i input.AVI -acodec libfaac -ab 128k -ar 44100 -s 704x400 -r 20 -vcodec libx264 -b 256000 -cmp +chroma -partitions +parti4x4+partp8x8+partb8x8 -me_method umh -subq 5 -trellis 1 -refs 2 -bf 1 -coder 1 -me_range 16 -g 300 -keyint_min 25 -sc_threshold 40 -i_qfactor 0.71 -bt 256000 -maxrate 4M -bufsize 4M -rc_eq 'blurCplx^(1-qComp)' -qcomp 0.6 -qmin 10 -qmax 51 -qdiff 4 -level 21 output.3gp

this will convert your avi to 3gp. Try different formats as input and output file as per your need

NOTE :- Change parameters as per your need like 'level'

这篇关于使用ffmpeg将avi转换为3gp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆