Updated ytdlp version
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import re
|
||||
|
||||
from .common import InfoExtractor
|
||||
from ..networking import HEADRequest
|
||||
from ..utils import (
|
||||
HEADRequest,
|
||||
format_field,
|
||||
float_or_none,
|
||||
get_element_by_id,
|
||||
@@ -70,6 +70,7 @@ class VidLiiIE(InfoExtractor):
|
||||
r'src\s*:\s*(["\'])(?P<url>(?:https?://)?(?:(?!\1).)+)\1',
|
||||
webpage) or []]
|
||||
for source in sources:
|
||||
source = urljoin(url, source)
|
||||
height = int(self._search_regex(r'(\d+).mp4', source, 'height', default=360))
|
||||
if self._request_webpage(HEADRequest(source), video_id, f'Checking {height}p url', errnote=False):
|
||||
formats.append({
|
||||
|
Reference in New Issue
Block a user