From 3f6eaea676a2e4f4e3abed35ec9ffcf220e6298e Mon Sep 17 00:00:00 2001 From: pukkandan Date: Mon, 26 Oct 2020 08:06:04 +0530 Subject: [PATCH] Make Twitch Video ID output from Playlist and VOD extractor same. Is this sufficient for all cases? --- youtube_dlc/extractor/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dlc/extractor/twitch.py b/youtube_dlc/extractor/twitch.py index ab6654432..34892d69d 100644 --- a/youtube_dlc/extractor/twitch.py +++ b/youtube_dlc/extractor/twitch.py @@ -324,7 +324,7 @@ def _make_video_result(node): return { '_type': 'url_transparent', 'ie_key': TwitchVodIE.ie_key(), - 'id': video_id, + 'id': 'v'+ video_id, 'url': 'https://www.twitch.tv/videos/%s' % video_id, 'title': node.get('title'), 'thumbnail': node.get('previewThumbnailURL'),