Spaces:
Paused
Paused
File size: 272 Bytes
4369d38 5177c84 4369d38 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | #!/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])
|