diff options
| -rw-r--r-- | youtube_dl/extractor/adultswim.py | 2 | ||||
| -rw-r--r-- | youtube_dl/extractor/appletrailers.py | 3 | ||||
| -rw-r--r-- | youtube_dl/extractor/dailymotion.py | 1 | ||||
| -rw-r--r-- | youtube_dl/extractor/generic.py | 1 | 
4 files changed, 7 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py index 502a9c25a..34b8b0115 100644 --- a/youtube_dl/extractor/adultswim.py +++ b/youtube_dl/extractor/adultswim.py @@ -38,6 +38,7 @@ class AdultSwimIE(InfoExtractor):              },          ],          'info_dict': { +            'id': 'rQxZvXQ4ROaSOqq-or2Mow',              'title': 'Rick and Morty - Pilot',              'description': "Rick moves in with his daughter's family and establishes himself as a bad influence on his grandson, Morty. "          } @@ -55,6 +56,7 @@ class AdultSwimIE(InfoExtractor):              }          ],          'info_dict': { +            'id': '-t8CamQlQ2aYZ49ItZCFog',              'title': 'American Dad - Putting Francine Out of Business',              'description': 'Stan hatches a plan to get Francine out of the real estate business.Watch more American Dad on [adult swim].'          }, diff --git a/youtube_dl/extractor/appletrailers.py b/youtube_dl/extractor/appletrailers.py index 287f71e07..43e82847f 100644 --- a/youtube_dl/extractor/appletrailers.py +++ b/youtube_dl/extractor/appletrailers.py @@ -14,6 +14,9 @@ class AppleTrailersIE(InfoExtractor):      _VALID_URL = r'https?://(?:www\.)?trailers\.apple\.com/trailers/(?P<company>[^/]+)/(?P<movie>[^/]+)'      _TEST = {          "url": "http://trailers.apple.com/trailers/wb/manofsteel/", +        'info_dict': { +            'id': 'manofsteel', +        },          "playlist": [              {                  "md5": "d97a8e575432dbcb81b7c3acb741f8a8", diff --git a/youtube_dl/extractor/dailymotion.py b/youtube_dl/extractor/dailymotion.py index cf5841a7c..b2dbf4a92 100644 --- a/youtube_dl/extractor/dailymotion.py +++ b/youtube_dl/extractor/dailymotion.py @@ -194,6 +194,7 @@ class DailymotionPlaylistIE(DailymotionBaseInfoExtractor):          'url': 'http://www.dailymotion.com/playlist/xv4bw_nqtv_sport/1#video=xl8v3q',          'info_dict': {              'title': 'SPORT', +            'id': 'xv4bw_nqtv_sport',          },          'playlist_mincount': 20,      }] diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index c4ba25a96..36a1f65bf 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -473,6 +473,7 @@ class GenericIE(InfoExtractor):          {              'url': 'http://discourse.ubuntu.com/t/unity-8-desktop-mode-windows-on-mir/1986',              'info_dict': { +                'id': '1986',                  'title': 'Unity 8 desktop-mode windows on Mir! - Ubuntu Discourse',              },              'playlist_mincount': 2, | 
