我正在尝试使用以下截屏视频命令:
avconv -f alsa -ar 44100 -ac 2 -i default -acodec aac -strict experimental -ab 320k -f x11grab -s 1024x600 -r 24 -i :0.0 -vcodec rawvideo screencast.mp4
但我仍然收到以下错误:
编码器'aac'是实验性的,可能会产生不良结果。 如果要使用它,请添加'-strict experimental'
其他网站建议确保在我执行的aac参数之后立即出现-strict实验,但没有效果。
答案 0 :(得分:23)
将-acodec aac
和-strict experimental
移到命令行中最后一个-i
参数之后的某个位置,在输出文件名之前。
avconv的参数被解析为&#34; avconv [input1 options] -i input1 [input2 options] -i input2 [output options] < / em> outputfile&#34;,所以当你在第二个-i
之前添加这些参数时,它们被解释为第二个输入的选项,而不是输出。