Restored line of code with function call to retrieve media info

This commit is contained in:
Rob van Bekkum 2016-02-27 22:11:48 +01:00
parent c7293db7b7
commit 4e23fd0d36

View File

@ -42,7 +42,7 @@ class LcpIE(InfoExtractor):
webpage = self._download_webpage(url, display_id) webpage = self._download_webpage(url, display_id)
# Extract the required info of the media files gathered in a dictionary # Extract the required info of the media files gathered in a dictionary
media_files_info = None #self.__extract_from_webpage(display_id, webpage) media_files_info = self.__extract_from_webpage(display_id, webpage)
# Some web pages embed videos from other platforms like dailymotion, therefore we pass on these URLs # Some web pages embed videos from other platforms like dailymotion, therefore we pass on these URLs
if not media_files_info: if not media_files_info:
return self.url_result(url, 'Generic') return self.url_result(url, 'Generic')