From abd8b946d7a06f19d3c407b23b8a43322bec434e Mon Sep 17 00:00:00 2001 From: dChandrahas Date: Mon, 1 Mar 2021 12:50:38 +0530 Subject: [PATCH] changing xml url to v2 --- slideslive-slides-dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slideslive-slides-dl.py b/slideslive-slides-dl.py index 18415aa..34ca052 100644 --- a/slideslive-slides-dl.py +++ b/slideslive-slides-dl.py @@ -62,7 +62,7 @@ def download_slides_xml(base_xml_url, video_id, video_name, headers, wait_time): file_path = '{0}/{1}.xml'.format(folder_name, video_id) if not os.path.exists(file_path): - xml_url = '{0}{1}/{1}.xml'.format(base_xml_url, video_id) + xml_url = '{0}{1}/v2/{1}.xml'.format(base_xml_url, video_id) print('downloading {}'.format(file_path)) download_save_file(xml_url, file_path, headers, wait_time)