ffprobe-python icon indicating copy to clipboard operation
ffprobe-python copied to clipboard

A wrapper of ffprobe command to extract metadata from media files.

Results 17 ffprobe-python issues
Sort by recently updated
recently updated
newest added

Hello, I am trying to use this plugin but when I use it I get this error: > Traceback (most recent call last): > File "/home/john/Projects/autotranscoder/./transcoder.py", line 12, in >...

In apparently rare cases, the lines don't contain =, such as section headers. When that happens, you'll get an error about not enough fields to unpack to fill the map...

This PR adds support for checking for checking and surfacing LoopStart and LoopEnd tags in files inspected. This is commonly used in video game audio to denote loop points to...

Hi, When I have installed python package setuptools 59.x.y version (latest), I am unable to build this ffprobe package. This has to do with that you read a readme file...

For some reason, certain files hang in the ffprobe subprocess call when quotations are not present around the file name - added '"%s"' to enforce quotations

Hey folks, this lib seems exactly what im looking for but Im unable to properly parse all information using the following snipped: ``` #!/usr/bin/env python from ffprobe import FFProbe #...

Hi! I just installed your ffprobe wrapper directly from [PyPi](https://pypi.org/project/ffprobe/), but when I tried to use it (as per the example), I get the following error: ```python >>> from ffprobe...

Error: (python-v-env) hcruz@Hugos-MacBook-Pro personal-file-processor % python3 demo.py Traceback (most recent call last): File "demo.py", line 38, in video_creation_datetime("/Users/hcruz/Documents/development/python/personal-file-processor/IMG_0119.MOV") File "demo.py", line 22, in video_creation_datetime metadata=FFProbe(filepath) File "/Users/hcruz/Documents/development/python/python-v-env/lib/python3.8/site-packages/ffprobe/ffprobe.py", line 54, in...

Just found this recently and I think it would be best to use `-print_format json` instead of parsing the normal output. I also noticed that it checks whether the file...

Tried using ffprobe-python to check [SRT](https://github.com/Haivision/srt) stream. Unfortunately because of: `if os.path.isfile(self.path_to_video) or self.path_to_video.startswith('http’):` it didn't work.