mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 10:14:42 +01:00
[tubi] Raise "no video formats" error when video url is empty
Related: #266
This commit is contained in:
parent
bbed5763f1
commit
cf9d6cfb0c
@ -81,9 +81,13 @@ def _real_extract(self, url):
|
||||
'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…
Reference in New Issue
Block a user