diff --git a/processors/visualisation/download_videos.py b/processors/visualisation/download_videos.py index 50217de4..aa24a724 100644 --- a/processors/visualisation/download_videos.py +++ b/processors/visualisation/download_videos.py @@ -667,6 +667,7 @@ def identify_video_urls_in_string(self, text): :param str text: string that may contain URLs :return list: list containing validated URLs to videos """ + text = str(text) split_comma = self.parameters.get("split-comma", True) if split_comma: texts = text.split(",")