summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-02-22 02:10:26 +0600
committerSergey M․ <dstftw@gmail.com>2015-02-22 02:10:26 +0600
commitc5181ab4101323de94bdb20850c64711c625c3ad (patch)
treea54d74c76a41a265e70a40d1c602eac1e2d4491d
parentea5152cae110d55b82c755c23926f077b90c071c (diff)
downloadyoutube-dl-c5181ab4101323de94bdb20850c64711c625c3ad.tar.gz
youtube-dl-c5181ab4101323de94bdb20850c64711c625c3ad.tar.xz
youtube-dl-c5181ab4101323de94bdb20850c64711c625c3ad.zip
[gdcvault] Fix rtmp streams (Closes #5024)
-rw-r--r--youtube_dl/extractor/gdcvault.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/youtube_dl/extractor/gdcvault.py b/youtube_dl/extractor/gdcvault.py
index fed968f51..05f58f1af 100644
--- a/youtube_dl/extractor/gdcvault.py
+++ b/youtube_dl/extractor/gdcvault.py
@@ -7,6 +7,7 @@ from ..compat import (
     compat_urllib_parse,
     compat_urllib_request,
 )
+from ..utils import remove_end
 
 
 class GDCVaultIE(InfoExtractor):
@@ -68,7 +69,9 @@ class GDCVaultIE(InfoExtractor):
         akami_url = xml_description.find('./metadata/akamaiHost').text
         slide_video_path = xml_description.find('./metadata/slideVideo').text
         video_formats.append({
-            'url': 'rtmp://' + akami_url + '/' + slide_video_path,
+            'url': 'rtmp://%s/ondemand?ovpfv=1.1' % 'fms.digitallyspeaking.com/cfx/st',
+            'play_path': remove_end(slide_video_path, '.flv'),
+            'ext': 'flv',
             'format_note': 'slide deck video',
             'quality': -2,
             'preference': -2,
@@ -76,7 +79,9 @@ class GDCVaultIE(InfoExtractor):
         })
         speaker_video_path = xml_description.find('./metadata/speakerVideo').text
         video_formats.append({
-            'url': 'rtmp://' + akami_url + '/' + speaker_video_path,
+            'url': 'rtmp://%s/ondemand?ovpfv=1.1' % 'fms.digitallyspeaking.com/cfx/st',
+            'play_path': remove_end(speaker_video_path, '.flv'),
+            'ext': 'flv',
             'format_note': 'speaker video',
             'quality': -1,
             'preference': -1,