Python FFmpeg 安装使用教程
文章目录
什么是 FFmpeg?
主要功能包括:
Windows
下载安装
下载解压安装
配置环境变量
bin
目录配置到环境变量中使用案例
使用 ffmpeg-python
库
pip install ffmpeg-python
转换视频格式
import ffmpeg
input_file = "input.mp4"
output_file = "output.avi"
ffmpeg.input(input_file).output(output_file).run()
视频剪辑
import ffmpeg
input_file = "input.mp4"
output_file = "output.mp4"
ffmpeg.input(input_file, ss=30, t=10).output(output_file).run()
添加字幕
import ffmpeg
input_file = "input.mp4"
subtitle_file = "subtitle.srt"
output_file = "output_with_subtitles.mp4"
ffmpeg.input(input_file).output(output_file, vf=f"subtitles={subtitle_file}").run()
使用 subprocess.run
执行
视频格式转换
import subprocess
def convert_mp4_to_avi(input_file, output_file):
# 使用 FFmpeg 将 MP4 文件转换为 AVI 文件
command = [
'ffmpeg', '-i', input_file, # 输入文件
output_file # 输出文件
]
# 运行 FFmpeg 命令
subprocess.run(command, check=True)
# 示例使用
input_video = 'input.mp4'
output_video = 'output.avi'
convert_mp4_to_avi(input_video, output_video)
print(f"视频已转换为 {output_video}")
其它问题
ffmpeg
不是内部或外部命令,也不是可运行的程序
个人简介
👋 你好,我是 Lorin 洛林,一位 Java 后端技术开发者!座右铭:Technology has the power to make the world a better place.
🚀 我对技术的热情是我不断学习和分享的动力。我的博客是一个关于Java生态系统、后端开发和最新技术趋势的地方。
🧠 作为一个 Java 后端技术爱好者,我不仅热衷于探索语言的新特性和技术的深度,还热衷于分享我的见解和最佳实践。我相信知识的分享和社区合作可以帮助我们共同成长。
💡 在我的博客上,你将找到关于Java核心概念、JVM 底层技术、常用框架如Spring和Mybatis 、MySQL等数据库管理、RabbitMQ、Rocketmq等消息中间件、性能优化等内容的深入文章。我也将分享一些编程技巧和解决问题的方法,以帮助你更好地掌握Java编程。
🌐 我鼓励互动和建立社区,因此请留下你的问题、建议或主题请求,让我知道你感兴趣的内容。此外,我将分享最新的互联网和技术资讯,以确保你与技术世界的最新发展保持联系。我期待与你一起在技术之路上前进,一起探讨技术世界的无限可能性。
📖 保持关注我的博客,让我们共同追求技术卓越。
作者:Lorin 洛林