|
|
@ -4,6 +4,7 @@ from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
ExtractorError,
|
|
|
|
int_or_none,
|
|
|
|
int_or_none,
|
|
|
|
|
|
|
|
float_or_none,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -92,6 +93,6 @@ class WistiaIE(InfoExtractor):
|
|
|
|
'description': data.get('seoDescription'),
|
|
|
|
'description': data.get('seoDescription'),
|
|
|
|
'formats': formats,
|
|
|
|
'formats': formats,
|
|
|
|
'thumbnails': thumbnails,
|
|
|
|
'thumbnails': thumbnails,
|
|
|
|
'duration': int_or_none(data.get('duration')),
|
|
|
|
'duration': float_or_none(data.get('duration')),
|
|
|
|
'timestamp': int_or_none(data.get('createdAt')),
|
|
|
|
'timestamp': int_or_none(data.get('createdAt')),
|
|
|
|
}
|
|
|
|
}
|
|
|
|