aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/azmedien.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/azmedien.py')
-rw-r--r--hypervideo_dl/extractor/azmedien.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/hypervideo_dl/extractor/azmedien.py b/hypervideo_dl/extractor/azmedien.py
index fee640e..0168340 100644
--- a/hypervideo_dl/extractor/azmedien.py
+++ b/hypervideo_dl/extractor/azmedien.py
@@ -11,11 +11,12 @@ class AZMedienIE(InfoExtractor):
IE_DESC = 'AZ Medien videos'
_VALID_URL = r'''(?x)
https?://
- (?:www\.)?
+ (?:www\.|tv\.)?
(?P<host>
telezueri\.ch|
telebaern\.tv|
- telem1\.ch
+ telem1\.ch|
+ tvo-online\.ch
)/
[^/]+/
(?P<id>
@@ -30,7 +31,7 @@ class AZMedienIE(InfoExtractor):
'''
_TESTS = [{
- 'url': 'https://www.telezueri.ch/sonntalk/bundesrats-vakanzen-eu-rahmenabkommen-133214569',
+ 'url': 'https://tv.telezueri.ch/sonntalk/bundesrats-vakanzen-eu-rahmenabkommen-133214569',
'info_dict': {
'id': '1_anruz3wy',
'ext': 'mp4',
@@ -38,6 +39,9 @@ class AZMedienIE(InfoExtractor):
'uploader_id': 'TVOnline',
'upload_date': '20180930',
'timestamp': 1538328802,
+ 'view_count': int,
+ 'thumbnail': 'http://cfvod.kaltura.com/p/1719221/sp/171922100/thumbnail/entry_id/1_anruz3wy/version/100031',
+ 'duration': 1930
},
'params': {
'skip_download': True,