[tubi] Raise "no video formats" error when video url is empty

Related: #266
pull/273/head
pukkandan 3 years ago
parent bbed5763f1
commit cf9d6cfb0c
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

@ -81,9 +81,13 @@ class TubiTvIE(InfoExtractor):
'http://tubitv.com/oz/videos/%s/content' % video_id, video_id)
title = video_data['title']
formats = self._extract_m3u8_formats(
self._proto_relative_url(video_data['url']),
video_id, 'mp4', 'm3u8_native')
formats = []
url = video_data['url']
# URL can be sometimes empty. Does this only happen when there is DRM?
if url:
formats = self._extract_m3u8_formats(
self._proto_relative_url(url),
video_id, 'mp4', 'm3u8_native')
self._sort_formats(formats)
thumbnails = []

Loading…
Cancel
Save