Skip to content

Instantly share code, notes, and snippets.

@cadmi
Forked from oldo/video-metada-finder.py
Created February 3, 2018 11:04
Show Gist options
  • Select an option

  • Save cadmi/289c5b1456c3ebae901ccfd2d9b0ae29 to your computer and use it in GitHub Desktop.

Select an option

Save cadmi/289c5b1456c3ebae901ccfd2d9b0ae29 to your computer and use it in GitHub Desktop.
A python function utilising `ffprobe` to find any metadata related to a video file. Examples of what it can find include bitrate, fps, codec details, duration and many more. This gist returns the video height and width as an example.
#!/usr/local/bin/python3
import subprocess
import shlex
import json
# function to find the resolution of the input video file
def findVideoMetada(pathToInputVideo):
cmd = "avprobe -v 0 -show_format -show_streams -of json"
args = shlex.split(cmd)
args.append(pathToInputVideo)
# run the ffprobe process, decode stdout into utf-8 & convert to JSON
ffprobeOutput = subprocess.check_output(args).decode('utf-8')
ffprobeOutput = json.loads(ffprobeOutput)
# prints all the metadata available:
import pprint
pp = pprint.PrettyPrinter(indent=2)
pp.pprint(ffprobeOutput)
# for example, find height and width
height = ffprobeOutput['streams'][0]['height']
width = ffprobeOutput['streams'][0]['width']
print(height, width)
return height, width
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment