aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/ustream.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/ustream.py')
-rw-r--r--hypervideo_dl/extractor/ustream.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/ustream.py b/hypervideo_dl/extractor/ustream.py
index 8b75879..4a7a8f8 100644
--- a/hypervideo_dl/extractor/ustream.py
+++ b/hypervideo_dl/extractor/ustream.py
@@ -13,6 +13,7 @@ from ..utils import (
ExtractorError,
int_or_none,
float_or_none,
+ join_nonempty,
mimetype2ext,
str_or_none,
)
@@ -139,8 +140,8 @@ class UstreamIE(InfoExtractor):
content_type = stream['contentType']
kind = content_type.split('/')[0]
f = {
- 'format_id': '-'.join(filter(None, [
- 'dash', kind, str_or_none(stream.get('bitrate'))])),
+ 'format_id': join_nonempty(
+ 'dash', kind, str_or_none(stream.get('bitrate'))),
'protocol': 'http_dash_segments',
# TODO: generate a MPD doc for external players?
'url': encode_data_uri(b'<MPD/>', 'text/xml'),