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仿真......希望能帮到你!

相关推荐
ikun_文2 小时前
Django框架路由Router的使用
python·pycharm·django
IvanCodes3 小时前
Python 基础语法(二):字符串与常用操作
python
昭昭日月明3 小时前
LangChain 生态:从链到代理,开发者需要掌握的三大核心
python·langchain·agent
Csvn3 小时前
🐍 Day 8:面向对象编程
后端·python
程序员天天困3 小时前
向量检索不准怎么办:混合检索与 Rerank 重排序召回优化实战
后端·python·ai编程
alphaTao4 小时前
LeetCode 每日一题 2026/8/24-2026/8/30
python·算法·leetcode
苏灿烤鱼4 小时前
当 AI Agent 遇见真实科学环境:深度拆解 Scientific Agent Skills,把"聊天机器人"变成"AI 科学家"
python·开源·agent
张文君4 小时前
ubuntu26.04坏道坏块分区隔离急速版260831-V0.12
linux·python
Interview Aid1124 小时前
TikTok OA 四题分享|半小时内 AC,题目基本都是实现题
java·开发语言·算法·面试·职场和发展
CoderIsArt12 小时前
C#中UI 线程与 Dispatcher
开发语言·ui·c#