Python3.6.2调用ffmpeg的方法
程序员文章站
2023-10-20 14:23:07
本文是为了学习python调用c语言的库写的例子。
去ffmpeg官网下载编译好的avcodec-57.dll、avutil-55.dll、swresample-2.dl...
本文是为了学习python调用c语言的库写的例子。
去ffmpeg官网下载编译好的avcodec-57.dll、avutil-55.dll、swresample-2.dll,准备好了c语言写出的库。
下面是用python调用的例子。
import os import ctypes dllhandler = ctypes.cdll.loadlibrary(os.getcwd() + '\\avcodec-57.dll') ret = dllhandler.avcodec_configuration() data = ctypes.string_at(ret, -1).decode("utf-8") print(data)
我们可以看到打印出来了ffmpeg的配置参数,说明已经调用成功。
以上这篇python3.6.2调用ffmpeg的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。