Spaces:
Paused
Paused
| #!/usr/bin/env python3 | |
| # coding: utf-8 | |
| # ytdlbot - test.py | |
| import yt_dlp | |
| url = "https://www.youtube.com/watch?v=e19kTVgb2c8" | |
| opts = { | |
| "cookiefile": "cookies.txt", | |
| "cookiesfrombrowser": ["firefox"], | |
| } | |
| with yt_dlp.YoutubeDL(opts) as ydl: | |
| ydl.download([url]) | |