switch from youtube-dl to yt-dlp

json_api
dsc 2 years ago
parent fd824035b7
commit 21160e17c5

@ -36,7 +36,7 @@ class YouTube:
try:
proc = await asyncio.create_subprocess_exec(
*["youtube-dl",
*["yt-dlp",
"--add-metadata",
"--write-all-thumbnails",
"--write-info-json",
@ -132,7 +132,7 @@ class YouTube:
async def update():
pip_path = os.path.join(os.path.dirname(sys.executable), "pip")
proc = await asyncio.create_subprocess_exec(
*[sys.executable, pip_path, "install", "--upgrade", "youtube-dl"],
*[sys.executable, pip_path, "install", "--upgrade", "yt-dlp"],
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.PIPE)
stdout, stderr = await proc.communicate()

@ -1,5 +1,5 @@
quart
youtube-dl
yt-dlp
aiofiles
aiohttp
bottom
@ -7,4 +7,4 @@ tinytag
peewee
python-dateutil
mutagen
peewee
peewee

Loading…
Cancel
Save