Skip to content

Ren-Owen/MediaInfo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

A Python wrapper around the MediaInfo command line utility

SYNOPSIS

from MediaInfo import MediaInfo

info     = Mediainfo(filename = '/media/test.ts')
infoData = info.getInfo()

info     = Mediainfo(filename = '/media/test.ts', cmd = '/usr/bin/ffprobe')
infoData = info.getInfo()

info     = Mediainfo(filename = '/media/test.ts', cmd = '/usr/bin/mediainfo')
infoData = info.getInfo()

DESCRIPTION

MediaInfo gets information of media through ffprobe by default. Alternatively, ffprobe and mediainfo are also supported in configuration.

About

A Python wrapper around the ffprobe or mediainfo command line utility

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages