summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2019-07-06 23:16:38 +0700
committerSergey M․ <dstftw@gmail.com>2019-07-06 23:17:45 +0700
commita6389abfd7fec786ed07031cd7f3a42d02910de3 (patch)
treeaaa761429928abb9d6444b88e83d64956963fadd
parentd18003a1419517cad49d4c5e8acb8255dd5422df (diff)
downloadyoutube-dl-a6389abfd7fec786ed07031cd7f3a42d02910de3.tar.gz
youtube-dl-a6389abfd7fec786ed07031cd7f3a42d02910de3.tar.xz
youtube-dl-a6389abfd7fec786ed07031cd7f3a42d02910de3.zip
[philharmoniedeparis] Relax _VALID_URL (closes #21672)
-rw-r--r--youtube_dl/extractor/philharmoniedeparis.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/philharmoniedeparis.py b/youtube_dl/extractor/philharmoniedeparis.py
index f723a2b3b..03da64b11 100644
--- a/youtube_dl/extractor/philharmoniedeparis.py
+++ b/youtube_dl/extractor/philharmoniedeparis.py
@@ -14,7 +14,7 @@ class PhilharmonieDeParisIE(InfoExtractor):
     _VALID_URL = r'''(?x)
                     https?://
                         (?:
-                            live\.philharmoniedeparis\.fr/(?:[Cc]oncert/|misc/Playlist\.ashx\?id=)|
+                            live\.philharmoniedeparis\.fr/(?:[Cc]oncert/|embed(?:app)?/|misc/Playlist\.ashx\?id=)|
                             pad\.philharmoniedeparis\.fr/doc/CIMU/
                         )
                         (?P<id>\d+)
@@ -40,6 +40,12 @@ class PhilharmonieDeParisIE(InfoExtractor):
     }, {
         'url': 'http://live.philharmoniedeparis.fr/misc/Playlist.ashx?id=1030324&track=&lang=fr',
         'only_matching': True,
+    }, {
+        'url': 'https://live.philharmoniedeparis.fr/embedapp/1098406/berlioz-fantastique-lelio-les-siecles-national-youth-choir-of.html?lang=fr-FR',
+        'only_matching': True,
+    }, {
+        'url': 'https://live.philharmoniedeparis.fr/embed/1098406/berlioz-fantastique-lelio-les-siecles-national-youth-choir-of.html?lang=fr-FR',
+        'only_matching': True,
     }]
     _LIVE_URL = 'https://live.philharmoniedeparis.fr'