python如何调用ffmpeg?

去ffmpeg官网下载编译好的avcodec-57.dll、avutil-55.dll、swresample-2.dll,准备好了C语言写出的库。

相关推荐:《Python教程》

下面是用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的配置参数,说明已经调用成功。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何调用ffmpeg