diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 20:09:10 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-23 20:09:10 +0100 | 
| commit | f3a34072266c0a7595f73fa032685cf8a50d2ab4 (patch) | |
| tree | 69c7b5147b02c4424843b46158a583b5159aaf26 | |
| parent | 835a22ef3fc4f8f5b6a414a870561f6492a51de4 (diff) | |
[youtube] Clarify keywords
| -rw-r--r-- | youtube_dl/extractor/youtube.py | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 0cb837afc..b4bbaf902 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1558,20 +1558,20 @@ class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):          return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)  class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor): -    IE_DESC = 'YouTube.com recommended videos, "ytrec" keyword (requires authentication)' +    IE_DESC = 'YouTube.com recommended videos, ":ytrec" for short (requires authentication)'      _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'      _FEED_NAME = 'recommended'      _PLAYLIST_TITLE = 'Youtube Recommended videos'  class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor): -    IE_DESC = 'Youtube watch later list, "ytwatchlater" keyword (requires authentication)' +    IE_DESC = 'Youtube watch later list, ":ytwatchlater" for short (requires authentication)'      _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'      _FEED_NAME = 'watch_later'      _PLAYLIST_TITLE = 'Youtube Watch Later'      _PERSONAL_FEED = True  class YoutubeHistoryIE(YoutubeFeedsInfoExtractor): -    IE_DESC = 'Youtube watch history, "ythistory" keyword (requires authentication)' +    IE_DESC = 'Youtube watch history, ":ythistory" for short (requires authentication)'      _VALID_URL = 'https?://www\.youtube\.com/feed/history|:ythistory'      _FEED_NAME = 'history'      _PERSONAL_FEED = True @@ -1579,7 +1579,7 @@ class YoutubeHistoryIE(YoutubeFeedsInfoExtractor):  class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):      IE_NAME = 'youtube:favorites' -    IE_DESC = 'YouTube.com favourite videos, "ytfav" keyword (requires authentication)' +    IE_DESC = 'YouTube.com favourite videos, ":ytfav" for short (requires authentication)'      _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:ou?rites)?'      _LOGIN_REQUIRED = True  | 
