I checked the other topics, which gives a solution to change master.json to master.mpd - which works for almost all the vids, but for a few I got stuck (notice the bold part):
https://vod-adaptive-ak.vimeocdn.com/exp=1718701814~acl=%2F29562e5f-9c6e-4444-907e-836...st/av/primary/playlist.json?omit=av1-hevc&pathsig=8c954e4f~eZ4rR2pfL1b666HUdv9xZFZ7olwx oWiGhGoa1Td6nZw&qsr=1&rh=XHo8I
How can I download these?
+ Reply to Thread
Results 1 to 15 of 15
-
-
I cannot as it is a paid service that needs my credentials. The same problem is described here:
https://forum.videohelp.com/threads/414958-How-to-download-vimeo-video-from-a-new-stream-url -
Code:
ffmpeg -i 'https://vod-adaptive-ak.vimeocdn.com/exp=1718817345~acl=%2F0cc54773-bd6b-41ae-8a72-ec89ae8a632b%2F%2A~hmac=4f719fcbe1703876d062060230d299ce084fa536ffd819c44a1b149aa57b9d0b/0cc54773-bd6b-41ae-8a72-ec89ae8a632b/v2/playlist/av/0cc54773/avf/4f3a6100/media.m3u8?pathsig=8c953e4f~JQ-uf2yp9D0neDNz72UAnte3xRs1VPe9r7tub80Ewlc&qsr=1&st=video&ext-subs=1&rh=1sIDIB' -i 'https://vod-adaptive-ak.vimeocdn.com/exp=1718817345~acl=%2F0cc54773-bd6b-41ae-8a72-ec89ae8a632b%2F%2A~hmac=4f719fcbe1703876d062060230d299ce084fa536ffd819c44a1b149aa57b9d0b/0cc54773-bd6b-41ae-8a72-ec89ae8a632b/v2/playlist/av/0cc54773/avf/1564e349/media.m3u8?pathsig=8c953e4f~7FUAsn3aK4pwsthZ6EI1JwwRrtaCTttUJYavE3s5YdM&qsr=1&st=audio&ext-subs=1&rh=1sIDIB' -c copy -map 0:v:0 -map 1:a:0 'Interview.mp4'
-
-
Code:
ffmpeg.exe -i 'https://vod-adaptive-ak.vimeocdn.com/exp=1718825966~acl=%2F0cc54773-bd6b-41ae-8a72-ec89ae8a632b%2F%2A~hmac=1058b98798944875774cfc552afdd946dd26ae9f2516a992fffcdafb818bb2dd/0cc54773-bd6b-41ae-8a72-ec89ae8a632b/v2/playlist/av/0cc54773/avf/4f3a6100/media.m3u8?pathsig=8c953e4f~JQ-uf2yp9D0neDNz72UAnte3xRs1VPe9r7tub80Ewlc&qsr=1&st=video&ext-subs=1&omit=hevc&rh=1sIDIB' -i 'https://vod-adaptive-ak.vimeocdn.com/exp=1718825966~acl=%2F0cc54773-bd6b-41ae-8a72-ec89ae8a632b%2F%2A~hmac=1058b98798944875774cfc552afdd946dd26ae9f2516a992fffcdafb818bb2dd/0cc54773-bd6b-41ae-8a72-ec89ae8a632b/v2/playlist/av/0cc54773/avf/1564e349/media.m3u8?pathsig=8c953e4f~7FUAsn3aK4pwsthZ6EI1JwwRrtaCTttUJYavE3s5YdM&qsr=1&st=audio&ext-subs=1&omit=hevc&rh=1sIDIB' -c copy -map 0:v:0 -map 1:a:0 'Interview.mp4'
Last edited by slayer36; 19th Jun 2024 at 13:57.
-
Last edited by maz22; 19th Jun 2024 at 15:52.
-
-
Thanks slayer, that worked.
@maz22 > to complement his answer:
You can apply the text filter as slayer mentioned, with either All or HTML selected, as we're looking for a HTML file, not an XHR.
That file contains the source of the iframe containing the video that Vimeo serves, and only accessible from its containing website (can't open that page directly in a new browser tab due to the video's privacy setting at Vimeo).
With the appropriate Network request line selected, the content of that file is visible in the Response tab (must toggle Raw to see it), and contains multiple m3u8 URLs.
Pick any one, and all that is left to do is find and replace those peskyCode:\u0026
Code:&
You can then feed the thus edited m3u8 URL straight to yt-dlp, wrapped with double quotes, e.g.:
Code:C:\yt-dlp.exe "https://vod-adaptive-ak.vimeocdn.com/(...)/playlist.m3u8?(...)"
Last edited by Marvelous; 30th Jun 2024 at 14:28. Reason: Precision & clarity
-
Last edited by maz22; 21st Jun 2024 at 02:57.
-
Thanks everybody. I still have one problem - followed @Marvelous summary and was able to download video, but it arrived as two files - one video file, and a separate audio file. Any idea what I'm doing wrong? Thanks!
Similar Threads
-
How to download vimeo video from a new stream url?
By Joraba in forum Video Streaming DownloadingReplies: 98Last Post: 11th Feb 2025, 01:37 -
Trying to download a live stream from Vimeo
By razametal in forum Video Streaming DownloadingReplies: 6Last Post: 16th Oct 2024, 11:44 -
Trying to download a private Vimeo with yt-dlp
By eska78 in forum Video Streaming DownloadingReplies: 11Last Post: 10th May 2024, 13:13 -
yt-dlp error 403 from Vimeo
By jaktchor in forum Video Streaming DownloadingReplies: 7Last Post: 17th Aug 2023, 15:42 -
How to download Vimeo Livestream that is currently off-stream?
By savvyguy in forum Video Streaming DownloadingReplies: 1Last Post: 18th Jun 2021, 01:07