1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 20:51:10 +02:00

[GooglePlus] fix video title extraction

This commit is contained in:
Petr Půlpán 2014-06-29 16:43:31 +02:00
parent 57bdc730e2
commit 41b610acab

View File

@ -52,8 +52,7 @@ def _real_extract(self, url):
# Extract title
# Get the first line for title
video_title = self._html_search_regex(r'<meta name\=\"Description\" content\=\"(.*?)[\n<"]',
webpage, 'title', default='NA')
video_title = self._og_search_description(webpage).splitlines()[0]
# Step 2, Simulate clicking the image box to launch video
DOMAIN = 'https://plus.google.com/'