Skip to content

Commit

Permalink
[lbry] add support for odysee.com domain(closes #26806)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine committed Nov 17, 2020
1 parent d65628e commit 5c3f701
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion youtube_dl/extractor/lbry.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

class LBRYIE(InfoExtractor):
IE_NAME = 'lbry.tv'
_VALID_URL = r'https?://(?:www\.)?lbry\.tv/(?P<id>@[0-9a-zA-Z-]+:[0-9a-z]+/[0-9a-zA-Z().-]+:[0-9a-z])'
_VALID_URL = r'https?://(?:www\.)?(?:lbry\.tv|odysee\.com)/(?P<id>@[0-9a-zA-Z-]+:[0-9a-z]+/[0-9a-zA-Z().-]+:[0-9a-z])'
_TESTS = [{
# Video
'url': 'https://lbry.tv/@Mantega:1/First-day-LBRY:1',
Expand All @@ -41,6 +41,9 @@ class LBRYIE(InfoExtractor):
'timestamp': 1591312601,
'upload_date': '20200604',
}
}, {
'url': 'https://odysee.com/@BrodieRobertson:5/apple-is-tracking-everything-you-do-on:e',
'only_matching': True,
}]

def _call_api_proxy(self, method, display_id, params):
Expand Down

0 comments on commit 5c3f701

Please sign in to comment.