You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code is leading to a key error, but I don't know why:
from vimeo_downloader import Vimeo
v = Vimeo.from_video_id(video_id='1011688626')
s = v.streams
Here is the error:
KeyError Traceback (most recent call last)
Cell In[74], line 3
1 from vimeo_downloader import Vimeo
2 v = Vimeo.from_video_id(video_id='1011688626')
----> 3 s = v.streams
File ~/.../env-iter3/lib/python3.12/site-packages/vimeo_downloader/init.py:341, in Vimeo.streams(self) 339 title = None 340 dl = []
--> 341 for stream in js_url["request"]["files"]["progressive"]: 342 url = stream["url"] 343 if not requests.get(url, stream=True).ok:
KeyError: 'files'
Any idea on a solution or workaround?
The text was updated successfully, but these errors were encountered:
This code is leading to a key error, but I don't know why:
Here is the error:
KeyError Traceback (most recent call last)
Cell In[74], line 3
1 from vimeo_downloader import Vimeo
2 v = Vimeo.from_video_id(video_id='1011688626')
----> 3 s = v.streams
File ~/.../env-iter3/lib/python3.12/site-packages/vimeo_downloader/init.py:341, in Vimeo.streams(self)
339 title = None
340 dl = []
--> 341 for stream in js_url["request"]["files"]["progressive"]:
342 url = stream["url"]
343 if not requests.get(url, stream=True).ok:
KeyError: 'files'
Any idea on a solution or workaround?
The text was updated successfully, but these errors were encountered: