融化命令行播放器问题:编解码器不支持隔行扫描

发布于 2024-09-19 02:10:13 字数 314 浏览 4 评论 0原文

我在一台 Linux 机器上安装了 Melt(使用 MLT 框架),并尝试执行简单的视频编辑操作。 以下是我发出的命令:

melt avformat-novalidate:clip1.mpeg -consumer avformat:clip1-grey.mpeg -verbose

输出视频未正确创建,并且还给出如下错误:

[mpeg1video @ 0x1b0a5910]interlacing not supported by codec

有人知道为什么会发生这种情况吗?

I installed melt (using MLT framework) in one of my Linux machine and is trying to perform a simple video editing operation.
Following is the command I issued:

melt avformat-novalidate:clip1.mpeg -consumer avformat:clip1-grey.mpeg -verbose

The output video is not getting created properly and also it is giving an error like:

[mpeg1video @ 0x1b0a5910]interlacing not supported by codec

Do anybody know, why this is happening?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深爱不及久伴 2024-09-26 02:10:13

你可以使用这样的东西:

melt youravifile.flv -consumer avformat  frame_rate_num=30 -profile vcd_pal >output.avi

You can use something like this :

melt youravifile.flv -consumer avformat  frame_rate_num=30 -profile vcd_pal >output.avi
战皆罪 2024-09-26 02:10:13

可能是您的视频编码不正确,因为我之前曾将其用于多个编解码器和多个容器,但我之前没有看到过此错误。

尝试使用不同的视频编解码器,例如 mpeg4 或 libx264。要了解所有可用的视频编解码器,

melt -query "video_codecs"

请在命令中使用视频编解码器,如下所示,

melt avformat-novalidate:clip1.mpeg -consumer avformat:clip1-grey.mpeg -vcodec=libx264 -verbose

您可能需要根据您使用的编解码器更改文件扩展名(容器),例如对于 h264,您可能希望使用 avi 或 flv 等。

May be your video is not encoded properly because i have used it before for multiple codecs and multiple containers I haven't seen this error before.

try using different video codecs like mpeg4 or libx264. to know all the video codecs available

melt -query "video_codecs"

use video codec in your command like this

melt avformat-novalidate:clip1.mpeg -consumer avformat:clip1-grey.mpeg -vcodec=libx264 -verbose

you may need to change the file extension(container) depending on the codec you use like for h264 you would want to use avi or flv etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文