Fix 0903221814

Now works, created fixed and clipped pafy
This commit is contained in:
BarsTiger
2022-03-09 18:14:45 +02:00
parent e0ea08a4af
commit 7e33d5fe51
13 changed files with 759 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
# -*- coding: utf-8 -*-
Pafy = None
def new(url, basic=True, gdata=False, size=False,
callback=None, ydl_opts=None):
global Pafy
if Pafy is None:
from .backend_youtube_dl import YtdlPafy as Pafy
return Pafy(url, basic, gdata, size, callback, ydl_opts=ydl_opts)