|
|
@ -11,11 +11,12 @@ from ..compat import (
|
|
|
|
)
|
|
|
|
)
|
|
|
|
from ..utils import (
|
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
ExtractorError,
|
|
|
|
|
|
|
|
remove_end,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IPrimaIE(InfoExtractor):
|
|
|
|
class IPrimaIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://play\.iprima\.cz/([^/]+/)*(?P<id>[^?#]+)'
|
|
|
|
_VALID_URL = r'https?://play\.iprima\.cz/(?:[^/]+/)*(?P<id>[^?#]+)'
|
|
|
|
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://play.iprima.cz/particka/particka-92',
|
|
|
|
'url': 'http://play.iprima.cz/particka/particka-92',
|
|
|
@ -105,7 +106,7 @@ class IPrimaIE(InfoExtractor):
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
'id': real_id,
|
|
|
|
'id': real_id,
|
|
|
|
'title': self._og_search_title(webpage).replace(' | Prima PLAY', ''),
|
|
|
|
'title': remove_end(self._og_search_title(webpage), ' | Prima PLAY'),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
|
|
|
'formats': formats,
|
|
|
|
'formats': formats,
|
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|