当前位置:   article > 正文

三、ffmpeg获取视频信息_ffmpeg 获取视频的rotation

ffmpeg 获取视频的rotation

获取信息是视频编解码的基础,ffmpeg提供了非常方便的获取信息的方式,代码也比较简单.我就直接贴出来了

import ffmpeg
import sys

# 执行probe执行
probe = ffmpeg.probe("dummy1.mp4")
video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None)
if video_stream is None:
    print('No video stream found', file=sys.stderr)
    sys.exit(1)
# 宽度
width = int(video_stream['width'])
# 高度
height = int(video_stream['height'])
# 帧数
num_frames = int(video_stream['nb_frames'])
# 时长
time = (video_stream['duration'])
# 比特率
bitrate = (video_stream['bit_rate'])

print('width: {}'.format(width))
print('height: {}'.format(height))
print('num_frames: {}'.format(num_frames))
print('time: {}'.format(time))
print('bitrate: {}'.format(bitrate))

# 查看全部信息
print(video_stream)


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30

博主开发的第三方CSDN客户端.体验很棒哦,快来体验下载吧
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/174849
推荐阅读
相关标签
  

闽ICP备14008679号