Default to yt-dlp

This commit is contained in:
blank X 2021-10-06 13:51:07 +07:00
parent 3553aaf427
commit 855ec364ce
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
3 changed files with 13 additions and 3 deletions

View File

@ -1,9 +1,14 @@
import sys
import time
import json
import random
import logging
import feedparser
from io import BytesIO
try:
from yt_dlp.extractor import youtube
except Exception as e:
print(f'Failed to import yt_dlp due to {type(e).__name__}: {e}, importing youtube_dl', file=sys.stderr)
from youtube_dl.extractor import youtube
from . import config, client, seen_videos

View File

@ -1,5 +1,6 @@
import re
import os
import sys
import json
import time
import random
@ -10,6 +11,10 @@ import traceback
from io import BytesIO
from decimal import Decimal
from urllib.parse import urlparse
try:
from yt_dlp import YoutubeDL
except Exception as e:
print(f'Failed to import yt_dlp due to {type(e).__name__}: {e}, importing youtube_dl', file=sys.stderr)
from youtube_dl import YoutubeDL
from . import session, config, client, seen_videos
from .utils import update_seen_videos, get_video_list

View File

@ -1,4 +1,4 @@
youtube-dl
yt-dlp
feedparser
telethon
aiohttp