1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-21 08:35:40 +07:00
This commit is contained in:
Georg Jaehnig
2014-05-30 16:39:24 +02:00
parent 211fd6c674
commit 4ffeca4ea2

View File

@@ -23,7 +23,6 @@ def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('id')
# TODO more code goes here, for example ...
webpage = self._download_webpage(url, video_id)
title = self._html_search_regex(r'<h1.*?>(.*?)</h1>', webpage, 'title')