我已经升级到支持WEBM最新的ffmpeg,但我似乎无法WEBM转换到MP4
ffmpeg -i filea.webM -sameq filea.flv
我得到这个错误
swScaler: Unknown format is not supported as input pixel format
Cannot get resampling context
我不知道该怎么做。
我已经升级到支持WEBM最新的ffmpeg,但我似乎无法WEBM转换到MP4
ffmpeg -i filea.webM -sameq filea.flv
我得到这个错误
swScaler: Unknown format is not supported as input pixel format
Cannot get resampling context
我不知道该怎么做。
你问转换为MP4,但是在您的命令已添加FLV的输出格式,请尝试:
ffmpeg -i your_input_filename.webm -qscale 0 your_outfile_name.mp4
已故的ffmpeg只需要-i PARAM
ffmpeg -i input_file.webm output_file.mp4
ffmpeg -i file.webm -strict -2 file.mp4
似乎是确定。
我使用的ffmpeg版本0.10.9-7:0.10.9-1〜lucid1。
在新的ffmpeg的版本中,“-sameq”选项已被删除,您必须使用“-qscale”代替。
ffmpeg -i your_input_filename.webm -qscale 0 your_outfile_name.mp4