将创建 mp42 编码的 ASF 文件的 Python 模块
我正在尝试使用网络摄像头捕获视频,然后在 Windows 计算机上将其编码为 mp42 asf 文件。 我设法使用 pymedia 对 mpeg2 文件进行编码,但 pymedia 似乎不支持 mp42。
我安装了 opencv 并尝试使用 python 包装器,但每次我创建编写器时 python 都会崩溃。即使只是捕捉图像,它也显得太慢且不可靠。 有谁知道允许我创建 mp42 文件的 python 模块? 谢谢, -射线
I'm trying to capture a video using a webcam then encoding it as an mp42 asf file on a windows machine.
I managed to encode an mpeg2 file using pymedia but pymedia doesn't seem to support mp42.
I installed opencv and tried to use the python wrapper but python keeps crashing everytime I create a writer. Even with just captureing images, it seems too slow and unreliable.
Does anyone know of a python module that allow me to create mp42 files?
Thanks,
-Ray
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据此: http://forums.creativecow.net/readpost/291/493 mp42 是 MP4 ISO 文件格式的版本 2。 (解释此处)
根据此wiki 链接,它是旧的 Microsoft(专有)MPEG4 编解码器版本 2。这是内置于 VFW(Windows 视频)下。我认为 FFMPEG 允许使用 -vcodec MSMPEGv2 (或类似的东西)按照以下链接进行编码: http:// /ffmpeg.org/general.html#Video-Codecs。虽然我不确定这是否相同。
如果 FFMPEG 有效,它具有 python 绑定pyffmpeg< /strong> 这可能对你有用。
According to this : http://forums.creativecow.net/readpost/291/493 mp42 is a version 2 of MP4 ISO file format. (Explained here)
Where as according to this wiki link, it is an old Microsoft's (proprietary) MPEG4 codec version 2. This was built-in under VFW (video for windows). I think FFMPEG allows encoding using -vcodec MSMPEGv2 (or something like that) as per this link: http://ffmpeg.org/general.html#Video-Codecs. Though i am not sure if this is same.
If FFMPEG works, it has python binding pyffmpeg that might work for you.