Created
December 18, 2011 18:37
-
-
Save giginet/1494114 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # | |
| # ffmpeg.py | |
| # created by giginet on 2011/12/18 | |
| # | |
| import os | |
| import re | |
| import sys | |
| import math | |
| import commands | |
| def get_info(path): | |
| command = "ffmpeg -i %s" % path | |
| try: | |
| return commands.getstatusoutput(command)[1] | |
| except: | |
| return "" | |
| def get_playtime(path): | |
| """ | |
| Returns play time of movie/audio file. | |
| """ | |
| output = get_info(path) | |
| for line in output.split('\n'): | |
| duration = re.findall(r"Duration: ([0-9]{2}:[0-9]{2}:[0-9\.]*)", line) | |
| if duration: | |
| times = duration[0].split(':') | |
| if len(times) == 3: | |
| return sum([float(v) * math.pow(60, 2 - i) for i, v in enumerate(times)]) | |
| return 0 | |
| def get_size(path): | |
| """ | |
| Returns size as a 2-tuple | |
| """ | |
| output = get_info(path) | |
| for line in output.split('\n'): | |
| stream = re.findall(r"Stream .+ ([0-9]+x[0-9]+)", line) | |
| if stream: | |
| size = tuple(stream[0].split('x')) | |
| if len(size) == 2: | |
| return size | |
| return (0, 0) | |
| if __name__ == '__main__': | |
| if len(sys.argv) == 1: | |
| print "Second argument must be filename." | |
| else: | |
| path = os.path.join(os.getcwd(), sys.argv[1]) | |
| print get_playtime(path) | |
| print get_size(path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment