Browse Source

[abc] Support more URL formats

master
Jaime Marquínez Ferrándiz 9 years ago
parent
commit
d97da29da2
1 changed files with 4 additions and 1 deletions
  1. 5
      youtube_dl/extractor/abc.py

5
youtube_dl/extractor/abc.py

@ -12,7 +12,7 @@ from ..utils import (
class ABCIE(InfoExtractor):
IE_NAME = 'abc.net.au'
_VALID_URL = r'http://www\.abc\.net\.au/news/[^/]+/[^/]+/(?P<id>\d+)'
_VALID_URL = r'http://www\.abc\.net\.au/news/(?:[^/]+/){1,2}(?P<id>\d+)'
_TESTS = [{
'url': 'http://www.abc.net.au/news/2014-11-05/australia-to-staff-ebola-treatment-centre-in-sierra-leone/5868334',
@ -45,6 +45,9 @@ class ABCIE(InfoExtractor):
'title': 'NAB lifts interest rates, following Westpac and CBA',
'description': 'md5:f13d8edc81e462fce4a0437c7dc04728',
},
}, {
'url': 'http://www.abc.net.au/news/2015-10-19/6866214',
'only_matching': True,
}]
def _real_extract(self, url):

Loading…
Cancel
Save