Compare commits

..

5 Commits

Author SHA1 Message Date
bashonly
3b80453874
isort 2024-02-04 19:19:08 +00:00
Michal
2a4d549e52
Update eporner.py 2024-02-04 19:58:40 +01:00
Michal
82777cfc73
Update yt_dlp/extractor/eporner.py
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
2024-02-04 19:56:13 +01:00
Michal
a0755795bd
Update yt_dlp/extractor/eporner.py
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
2024-02-04 19:56:07 +01:00
Michal
3f58b61022
Update yt_dlp/extractor/eporner.py
Co-authored-by: bashonly <88596187+bashonly@users.noreply.github.com>
2024-02-04 19:55:58 +01:00

View File

@ -1,15 +1,14 @@
import re
from .common import InfoExtractor
from ..utils import (
encode_base_n,
ExtractorError,
encode_base_n,
get_elements_by_class,
int_or_none,
join_nonempty,
merge_dicts,
parse_duration,
str_to_int,
url_or_none,
get_elements_by_class,
join_nonempty
)
@ -84,7 +83,7 @@ class EpornerIE(InfoExtractor):
sources = video['sources']
formats = []
av1 = True if len(get_elements_by_class("download-av1", webpage)) > 0 else False
has_av1 = bool(get_elements_by_class('download-av1', webpage))
for kind, formats_dict in sources.items():
if not isinstance(formats_dict, dict):
continue
@ -110,10 +109,10 @@ class EpornerIE(InfoExtractor):
'height': height,
'fps': fps,
})
if av1:
if has_av1:
formats.append({
'url': re.sub('(.*)(.mp4)', '\\1-av1\\2', src),
'format_id': join_nonempty('AV1', format_id),
'url': src.replace('.mp4', '-av1.mp4'),
'format_id': join_nonempty('av1', format_id),
'height': height,
'fps': fps,
'vcodec': 'av1',