Reading And Parsing Windows Video Files Metadata In Python
I'm working on a project and I need to read and parse video metadata.(duration, date created,title,bit rate , ...) as far as I know there isn't any good package for Python 3.X for
Solution 1:
I hope you found what you are looking for. :)
But if you did not or others are wondering.. I am researching the same sunject and I may have found a solution.
What I have found so far is a command-line tool called exiftool. If you download this software and use the command line feature you are able to run these commands with the subprocess module.
There is support for a lot of file formats, as shown in the documentation.
I will update this post as soon as I have found a working soltuion. :)
You can download the tool here.
Post a Comment for "Reading And Parsing Windows Video Files Metadata In Python"