mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
change cdn to cdn4 for the video_url
This commit is contained in:
parent
a2d821d711
commit
41cff90c41
@ -1,7 +1,10 @@
|
|||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import urljoin
|
from ..utils import (
|
||||||
|
parse_duration,
|
||||||
|
urljoin
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class YourPornIE(InfoExtractor):
|
class YourPornIE(InfoExtractor):
|
||||||
@ -27,17 +30,21 @@ def _real_extract(self, url):
|
|||||||
self._search_regex(
|
self._search_regex(
|
||||||
r'data-vnfo=(["\'])(?P<data>{.+?})\1', webpage, 'data info',
|
r'data-vnfo=(["\'])(?P<data>{.+?})\1', webpage, 'data info',
|
||||||
group='data'),
|
group='data'),
|
||||||
video_id)[video_id]).replace('/cdn/', '/cdn3/')
|
video_id)[video_id]).replace('/cdn/', '/cdn4/')
|
||||||
|
|
||||||
title = (self._search_regex(
|
title = (self._search_regex(
|
||||||
r'<[^>]+\bclass=["\']PostEditTA[^>]+>([^<]+)', webpage, 'title',
|
r'<[^>]+\bclass=["\']PostEditTA[^>]+>([^<]+)', webpage, 'title',
|
||||||
default=None) or self._og_search_description(webpage)).strip()
|
default=None) or self._og_search_description(webpage)).strip()
|
||||||
|
|
||||||
thumbnail = self._og_search_thumbnail(webpage)
|
thumbnail = self._og_search_thumbnail(webpage)
|
||||||
|
|
||||||
|
duration = parse_duration(self._search_regex(r'duration:[^0-9]*([0-9:]+)',
|
||||||
|
webpage, 'duration', default=None))
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': video_url,
|
'url': video_url,
|
||||||
'title': title,
|
'title': title,
|
||||||
|
'duration': duration,
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'age_limit': 18
|
'age_limit': 18
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user