mirror of
https://git.wownero.com/dsc/ircradio.git
synced 2024-08-15 01:03:15 +00:00
switch from youtube-dl to yt-dlp
This commit is contained in:
parent
fd824035b7
commit
21160e17c5
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue