Python图像处理——Python转换h264格式视频

①需要安装ffmpeg

复制代码
pip install imageio
pip install opencv-python
pip install ffmpeg-python

Python源码

复制代码
# coding=utf-8
import cv2
import os
from tqdm import tqdm
import imageio.v2 as iio

# 创建输出目录
img_dir = r'cache'
if not os.path.exists(img_dir):
    os.makedirs(img_dir)
# 读取视频文件
video_path = '1.mp4'  # 替换为你的视频文件路径
output_file = 'output.mp4'
cap = cv2.VideoCapture(video_path)
frame_count = 0

while True:
    # 逐帧读取视频
    ret, frame = cap.read()
    # 检查是否成功读取帧
    if not ret:
        break
    # 保存帧到文件
    frame_filename = os.path.join(img_dir, f'frame_{frame_count:04d}.jpg')
    cv2.imwrite(frame_filename, frame)
    frame_count += 1

# 释放视频捕获对象
cap.release()
print(f'总共保存了 {frame_count} 帧')

files = [os.path.join(img_dir, f) for f in os.listdir(img_dir)]

out = iio.get_writer(output_file, format='ffmpeg', mode='I', fps=25, codec='libx264', pixelformat='yuv420p')
for file in tqdm(files):
    frame = iio.imread(file)  # RGB format array
    out.append_data(frame)
out.close()

最后:

小编会不定期发布相关设计内容包括但不限于如下内容:信号处理、通信仿真、算法设计、matlab appdesigner,gui设计、simulink仿真......希望能帮到你!

相关推荐
swordbob10 分钟前
Spring 单例 Bean 是线程安全的吗?
java·开发语言
2601_951643771 小时前
Python第一,Java跌出前三,C语言杀回来了
java·c语言·python·编程语言排行·技术趋势
小小编程路1 小时前
C++ 异常 完整讲解
开发语言·c++
AI科技星2 小时前
数术工坊 · 第四卷 橡皮泥江湖(拓扑学)【完整定稿】
c语言·开发语言·汇编·electron·概率论·拓扑学
张忠琳2 小时前
【Go 1.26.4】Golang Select 深度解析
开发语言·后端·golang
AC赳赳老秦3 小时前
OpenClaw+Power Apps 实战:自动生成 Power Apps 应用、连接 Excel 数据源
大数据·开发语言·python·serverless·excel·deepseek·openclaw
提笔了无痕3 小时前
如何用Go实现整套RAG流程
开发语言·后端·golang
(Charon)3 小时前
【C++ 面试高频基础:指针、引用、const、static、new/delete 总结】
java·开发语言
2601_961875244 小时前
法考考试时间安排及科目|时间表|资料已整理
开发语言·c#·inverted-index·suffix-tree·sstable·r-tree·lsm-tree
AI科技星4 小时前
数术工坊第八卷:算力革命
c语言·开发语言·网络·量子计算·agi