添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
含蓄的眼镜  ·  Binance API 使用文档·  1 周前    · 
干练的火柴  ·  移动使用活动·  1 周前    · 
想发财的镜子  ·  微信支付 JSAPI ...·  1 周前    · 
瘦瘦的电池  ·  Agora Place Osaka Namba·  2 月前    · 
傲视众生的草稿纸  ·  BMC Community·  3 月前    · 
心软的香菜  ·  예외 먹는 ...·  3 月前    · 
卖萌的饼干  ·  python ...·  5 月前    · 

python获取视频流每帧数据时间戳

248浏览 · 2024-04-25 07:24:44
要获取视频流每帧数据的时间戳,可以使用ffmpeg库和Python的subprocess模块来实现。首先,你需要使用ffmpeg命令行工具来解析视频文件并获取每帧的时间戳信息。下面是一个示例代码: ```python import subprocess as sp # 定义ffmpeg命令 command = \['ffmpeg', '-i', 'e:\sample.wmv', '-pix_fmt', 'rgb24', '-vcodec', 'rawvideo', '-vf', 'showinfo', '-f', 'null', '-'\] # 执行ffmpeg命令并将输出重定向到管道 pipe = sp.Popen(command, stdout=sp.PIPE, stderr=sp.PIPE) # 读取ffmpeg输出的信息 output, error = pipe.communicate() # 解析输出信息,提取每帧的时间戳 timestamps = \[\] lines = output.decode().split('\n') for line in lines: if 'pts_time' in line: timestamp = line.split('pts_time:')\[1\].split()\[0\] timestamps.append(float(timestamp)) # 打印每帧的时间戳 for timestamp in timestamps: print(timestamp)