add google drive embeds
authorremitamine <remitamine@gmail.com>
Mon, 29 Jun 2015 07:01:30 +0000 (08:01 +0100)
committerremitamine <remitamine@gmail.com>
Thu, 23 Jul 2015 10:59:12 +0000 (11:59 +0100)
youtube_dl/extractor/generic.py

index 6d2efb22e784ecd40dcdebe5195a0d8dde63d632..3f7b094db20c2c944e780376581143cf247fada4 100644 (file)
@@ -48,6 +48,7 @@ from .vimeo import VimeoIE
 from .dailymotion import DailymotionCloudIE
 from .onionstudios import OnionStudiosIE
 from .snagfilms import SnagFilmsEmbedIE
+from .googledrive import GoogleDriveEmbedIE
 
 
 class GenericIE(InfoExtractor):
@@ -1599,6 +1600,11 @@ class GenericIE(InfoExtractor):
         if nbc_sports_url:
             return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
 
+        # Look for Google Drive embeds
+        google_drive_url = GoogleDriveEmbedIE._extract_url(webpage)
+        if google_drive_url:
+            return self.url_result(google_drive_url, 'GoogleDrive')
+
         # Look for UDN embeds
         mobj = re.search(
             r'<iframe[^>]+src="(?P<url>%s)"' % UDNEmbedIE._VALID_URL, webpage)