diff --git a/youtube_dl/extractor/liveleak.py b/youtube_dl/extractor/liveleak.py index b04be1e8c..00a3c686f 100644 --- a/youtube_dl/extractor/liveleak.py +++ b/youtube_dl/extractor/liveleak.py @@ -82,7 +82,8 @@ class LiveLeakIE(InfoExtractor): formats = [{ 'format_note': s.get('label'), - 'url': s['file'], + # removing this from the URL gives us the raw video without LiveLeak branding + 'url': s['file'].replace('.h264_base.mp4', ''), } for s in sources] self._sort_formats(formats)