1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-05 18:39:37 +02:00

[canalc2] Extract duration

This commit is contained in:
Sergey M․ 2015-10-18 19:27:05 +06:00
parent 14bddf35fb
commit b1bf063503

View File

@ -4,6 +4,7 @@
import re
from .common import InfoExtractor
from ..utils import parse_duration
class Canalc2IE(InfoExtractor):
@ -42,9 +43,13 @@ def _real_extract(self, url):
title = self._html_search_regex(
r'(?s)class="[^"]*col_description[^"]*">.*?<h3>(.*?)</h3>', webpage, 'title')
duration = parse_duration(self._search_regex(
r'id=["\']video_duree["\'][^>]*>([^<]+)',
webpage, 'duration', fatal=False))
return {
'id': video_id,
'formats': formats,
'title': title,
'duration': duration,
'formats': formats,
}