ffprobe supports probing remote files over HTTP. It would be great if this library could too.
Right now, if you try and load a remote file you get an OS Error because the file doesn't exist on disk.
>>> from ffprobe import FFProbe
>>> metadata = FFProbe("https://example.com/movie.mp4")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/example-user/virtual-env/lib/python3.6/site-packages/ffprobe/ffprobe.py", line 101, in __init__
raise IOError('No such media file ' + self.path_to_video)
OSError: No such media file https://example.com/movie.mp4
ffprobe
supports probing remote files over HTTP. It would be great if this library could too.Right now, if you try and load a remote file you get an OS Error because the file doesn't exist on disk.