Update InvidiousFeedProxy.py

This commit is contained in:
octt 2023-01-07 23:00:46 +00:00
parent 7e98ab0478
commit 2f80f31877
1 changed files with 0 additions and 1 deletions

View File

@ -16,7 +16,6 @@ def IsVideoShort(Id):
Info = youtube_dl.YoutubeDL().extract_info(Id, download=False)
w, h = Info['width'], Info['height']
if Info['duration'] < 60 and w < h and w/h == 0.5625: # == 9:16
print(True)
return True
return False