2024-05-23 06:09:21 +02:00
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
determine_ext,
|
|
|
|
str_or_none,
|
|
|
|
unified_timestamp,
|
2024-05-26 21:27:21 +02:00
|
|
|
url_or_none,
|
2024-05-23 06:09:21 +02:00
|
|
|
)
|
|
|
|
from ..utils.traversal import traverse_obj
|
|
|
|
|
|
|
|
|
|
|
|
class GodResourceIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://new\.godresource\.com/video/(?P<id>\w+)'
|
|
|
|
_TESTS = [{
|
|
|
|
# hls stream
|
|
|
|
'url': 'https://new.godresource.com/video/A01mTKjyf6w',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'A01mTKjyf6w',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'view_count': int,
|
|
|
|
'timestamp': 1710978666,
|
|
|
|
'channel_id': '5',
|
|
|
|
'thumbnail': 'https://cdn-02.godresource.com/e42968ac-9e8b-4231-ab86-f4f9d775841f/thumbnail.jpg',
|
|
|
|
'channel': 'Stedfast Baptist Church',
|
|
|
|
'upload_date': '20240320',
|
|
|
|
'title': 'GodResource video #A01mTKjyf6w',
|
2024-06-12 01:09:58 +02:00
|
|
|
},
|
2024-05-23 06:09:21 +02:00
|
|
|
}, {
|
|
|
|
# mp4 link
|
|
|
|
'url': 'https://new.godresource.com/video/01DXmBbQv_X',
|
|
|
|
'md5': '0e8f72aa89a106b9d5c011ba6f8717b7',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '01DXmBbQv_X',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'channel_id': '12',
|
|
|
|
'view_count': int,
|
|
|
|
'timestamp': 1687996800,
|
|
|
|
'thumbnail': 'https://cdn-02.godresource.com/sodomitedeception/thumbnail.jpg',
|
|
|
|
'channel': 'Documentaries',
|
|
|
|
'title': 'The Sodomite Deception',
|
|
|
|
'upload_date': '20230629',
|
2024-06-12 01:09:58 +02:00
|
|
|
},
|
2024-05-23 06:09:21 +02:00
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
display_id = self._match_id(url)
|
|
|
|
|
|
|
|
api_data = self._download_json(
|
|
|
|
f'https://api.godresource.com/api/Streams/{display_id}', display_id)
|
|
|
|
|
|
|
|
video_url = api_data['streamUrl']
|
|
|
|
is_live = api_data.get('isLive') or False
|
|
|
|
if (ext := determine_ext(video_url)) == 'm3u8':
|
|
|
|
formats, subtitles = self._extract_m3u8_formats_and_subtitles(
|
|
|
|
video_url, display_id, live=is_live)
|
|
|
|
elif ext == 'mp4':
|
|
|
|
formats, subtitles = [{
|
|
|
|
'url': video_url,
|
2024-06-12 01:09:58 +02:00
|
|
|
'ext': ext,
|
2024-05-23 06:09:21 +02:00
|
|
|
}], {}
|
|
|
|
else:
|
|
|
|
raise ExtractorError(f'Unexpected video format {ext}')
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': display_id,
|
|
|
|
'formats': formats,
|
|
|
|
'subtitles': subtitles,
|
|
|
|
'title': '',
|
|
|
|
'is_live': is_live,
|
|
|
|
**traverse_obj(api_data, {
|
|
|
|
'title': ('title', {str}),
|
|
|
|
'thumbnail': ('thumbnail', {url_or_none}),
|
|
|
|
'view_count': ('views', {int}),
|
|
|
|
'channel': ('channelName', {str}),
|
|
|
|
'channel_id': ('channelId', {str_or_none}),
|
|
|
|
'timestamp': ('streamDateCreated', {unified_timestamp}),
|
2024-06-12 01:09:58 +02:00
|
|
|
'modified_timestamp': ('streamDataModified', {unified_timestamp}),
|
|
|
|
}),
|
2024-05-23 06:09:21 +02:00
|
|
|
}
|