I am using this link as an example: https://www.dailymotion.com/video/x7ylio6?playlist=x6lgtp I have been reading other stack overflow questions and gathered this code:
nam = sg.popup_get_text('Enter name', no_titlebar=True)
nam = nam+'.mp4'
st = urllib.request.urlretrieve(Ur, nam)
However, this only gives me the HTML of the page when it is supposed to download the video, not specific to DailyMotion. Any ideas?
Is there a way to download a video from a webpage with python?