|
|
@ -4,7 +4,6 @@ from __future__ import unicode_literals
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
from ..utils import (
|
|
|
|
int_or_none,
|
|
|
|
int_or_none,
|
|
|
|
remove_start,
|
|
|
|
|
|
|
|
clean_html,
|
|
|
|
clean_html,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
@ -48,6 +47,6 @@ class MujRozhlasIE(InfoExtractor):
|
|
|
|
'url': audio_url,
|
|
|
|
'url': audio_url,
|
|
|
|
'title': title,
|
|
|
|
'title': title,
|
|
|
|
'description': description,
|
|
|
|
'description': description,
|
|
|
|
'duration': int(duration),
|
|
|
|
'duration': int_or_none(duration),
|
|
|
|
'vcodec': 'none',
|
|
|
|
'vcodec': 'none',
|
|
|
|
}
|
|
|
|
}
|
|
|
|