Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Download video
#2
That's just the hosting Vimeo address,not the real download link.
Can try to scrape it out address,but this can be difficult.

Can use youtube-dl,it's written in Python.
It's has a really big code base look at Github.
It works for 100's of sites also Vimeo.

pip install youtube-dl
Command line:
G:\1_youtube
λ youtube-dl https://vimeo.com/133436413
Output:
..... [download] Destination: Radiohead - Codex-133436413.fdash-fastly_skyfire_sep-video-392276614.mp4 [download] 100% of 84.77MiB in 01:21 [dashsegments] Total fragments: 49 [download] Destination: Radiohead - Codex-133436413.fdash-fastly_skyfire_sep-audio-392276614.m4a
From code:
import youtube_dl

ydl_opts = {
    'format': 'bestvideo[height<=?720]+bestaudio/best',
    'outtmpl': '%(title)s.%(ext)s',
    'noplaylist' : True,
}

with youtube_dl.YoutubeDL(ydl_opts) as ydl:
    ydl.download(['https://vimeo.com/133436413'])
Reply


Messages In This Thread
Download video - by arthur_cti - Dec-07-2019, 09:42 PM
RE: Download video - by snippsat - Dec-07-2019, 10:20 PM
RE: Download video - by arthur_cti - Dec-07-2019, 10:50 PM
RE: Download video - by Axel_Erfurt - Dec-07-2019, 11:40 PM
RE: Download video - by snippsat - Dec-07-2019, 11:54 PM
RE: Download video - by arthur_cti - Dec-08-2019, 12:33 AM
RE: Download video - by arthur_cti - Dec-08-2019, 05:21 AM
RE: Download video - by snippsat - Dec-08-2019, 01:42 PM
RE: Download video - by arthur_cti - Dec-10-2019, 09:03 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  download with internet download manager coral_raha 0 4,170 Jul-18-2021, 03:11 PM
Last Post: coral_raha

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020