We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f57a6b + 339e3a0 commit e5fb3eeCopy full SHA for e5fb3ee
videodb/timeline_v2.py
@@ -650,3 +650,8 @@ def generate_stream(self):
650
self.stream_url = stream_data.get("stream_url")
651
self.player_url = stream_data.get("player_url")
652
return stream_data.get("stream_url", None)
653
+
654
+ def download_stream(self, stream_url: str):
655
+ return self.connection.post(
656
+ path="timeline_v2/download", data={"stream_url": stream_url}
657
+ )
0 commit comments