Browse Source

[kontrtube] Fix video title extraction

totalwebcasting
dinesh 10 years ago
parent
commit
8a2300a597
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/kontrtube.py

+ 1
- 1
youtube_dl/extractor/kontrtube.py View File

@ -34,7 +34,7 @@ class KontrTubeIE(InfoExtractor):
video_url = self._html_search_regex(r"video_url: '(.+?)/?',", webpage, 'video URL')
thumbnail = self._html_search_regex(r"preview_url: '(.+?)/?',", webpage, 'video thumbnail', fatal=False)
title = self._html_search_regex(
r'<title>(.+?) - Труба зовёт - Интересный видеохостинг</title>', webpage, 'video title')
r'<title>(.+?)</title>', webpage, 'video title')
description = self._html_search_meta('description', webpage, 'video description')
mobj = re.search(


Loading…
Cancel
Save