我找不到任何适用于 ffmpeg 的 Python 绑定,所以我决定使用 SWIG 生成一个。int avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options);
生成既快速又简单(无需自定义,只是默认的 SWIG 界面),但使用libavformat/avformat.h等一些函数时会出现问题。使用 C 可以简单地通过以下方式运行:
AVFormatContext *pFormatCtx = NULL;
int status;
status = avformat_open_input(&pFormatCtx, '/path/to/my/file.ext', NULL, NULL);
在 Python 中,我尝试以下操作:
>>> from ppmpeg import *
>>> av_register_all()
>>> FormatCtx = AVFormatContext()
>>> FormatCtx
<ppmpeg.AVFormatContext; proxy of <Swig Object of type 'struct AVFormatContext *' at 0x173eed0> >
>>> avformat_open_input(FormatCtx, '/path/to/my/file.ext', None, None)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: in method 'avformat_open_input', argument 1 of type 'AVFormatContext **'
问题是 Python 没有 & 等价物。我尝试使用cpointer.i
和它的pointer_class
(%pointer_class(AVFormatContext, new_ctx)
),但new_ctx()
返回指针,这不是我想要的。%pointer_class(AVFormatContext *, new_ctx)
是非法的并给出语法错误。如果有任何帮助,我将不胜感激。谢谢。
编辑:我忘了提到我尝试使用类型映射,但不知道如何为结构编写自定义类型映射,并且文档只有基本类型的示例,如 int 或 float ...