summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Seiler <seileralex@gmail.com>2017-02-26 15:05:52 +0100
committerSergey M <dstftw@gmail.com>2017-02-26 22:05:52 +0800
commitfdeea72611b2c2c29a9a34e91ae4bd9b8dfc1f64 (patch)
treec5a59911af564202c1e29d7f35086a36971f0571
parent7fd465525695bb589fa8932e1e36f38ad511735b (diff)
downloadyoutube-dl-fdeea72611b2c2c29a9a34e91ae4bd9b8dfc1f64.tar.gz
youtube-dl-fdeea72611b2c2c29a9a34e91ae4bd9b8dfc1f64.tar.xz
youtube-dl-fdeea72611b2c2c29a9a34e91ae4bd9b8dfc1f64.zip
[cda] Decode URL (fixes #12255)
-rwxr-xr-xyoutube_dl/extractor/cda.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cda.py b/youtube_dl/extractor/cda.py
index ae7af2f0e..1ee35b501 100755
--- a/youtube_dl/extractor/cda.py
+++ b/youtube_dl/extractor/cda.py
@@ -1,6 +1,7 @@
 # coding: utf-8
 from __future__ import unicode_literals
 
+import codecs
 import re
 
 from .common import InfoExtractor
@@ -96,6 +97,10 @@ class CDAIE(InfoExtractor):
             if not video or 'file' not in video:
                 self.report_warning('Unable to extract %s version information' % version)
                 return
+            if video['file'].startswith('uggc'):
+                video['file'] = codecs.decode(video['file'], 'rot_13')
+                if video['file'].endswith('adc.mp4'):
+                    video['file'] = video['file'].replace('adc.mp4', '.mp4')
             f = {
                 'url': video['file'],
             }