Hello VideoHelp forumeur,
I am noob and i try everything to download video from this "elearning" website and i can't .
YT dlp, many software and addons
IDM to name just one
https://learn.lionsroar.com/courses/the-women-of-wisdom-summit/lectures/52750781
if you have suggestion i take it .
Thanks in advance![]()
![]()
+ Reply to Thread
Results 1 to 6 of 6
-
-
Code:
yt-dlp --add-header 'Referer:https://player.hotmart.com' 'https://vod-akm.play.hotmart.com/video/aZ86o98Xqp/hls/master-t-1710946732001.m3u8?hdnts=st=1711218350~exp=1711218850~hmac=9663935268d43586fd7c31e10c56f5826ecb497b5c1a33fae9c2d7ec6ae331db&app=aa2d356b-e2f0-45e8-9725-e0efc7b5d29c'
-
The next command was inspired by @Obo's solution. Because the master m3u8 has query parameters that can expire, you need to grab a fresh one, so this automates that process.
Bash shell only (no cmd / no powershell)
Code:curl -s https://learn.lionsroar.com/courses/the-women-of-wisdom-summit/lectures/52750781 \ | grep -oP 'data-attachment-id="\K[^"]+' \ | xargs -I {} curl -s "https://learn.lionsroar.com/api/v2/hotmart/private_video?attachment_id={}" \ | grep -oP '("video_id"|"signature"|"teachable_application_key"):"\K[^"]+' \ | xargs -n 3 sh -c 'curl -s "https://player.hotmart.com/embed/$1?signature=$3&token=$2"' sh \ | grep -oP '"url":"\K[^"]+' \ | perl -pe 's/\\u([0-9a-fA-F]{4})/chr(hex($1))/eg' \ | xargs -I {} yt-dlp.exe --add-header "Referer:https://player.hotmart.com" {}
[Attachment 77883 - Click to enlarge]
[Attachment 77884 - Click to enlarge]
I tested for other 3 random videos from that page, and it works as well.--[----->+<]>.++++++++++++.---.--------.
[*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
Similar Threads
-
Downloading .m3u8 with token playlists from URL/webpage for IPTV
By drsubzi in forum Video Streaming DownloadingReplies: 28Last Post: 14th Aug 2024, 17:31 -
How to get THE KEY from this TOKEN
By pericoplaner in forum Video Streaming DownloadingReplies: 1Last Post: 30th Nov 2023, 18:49 -
Extracting token for m3u8 stream
By aeregeneratel38 in forum Video Streaming DownloadingReplies: 3Last Post: 27th May 2021, 12:20 -
i need php script to grab/generate Auth token for m3u8 url (kodi or vlc)
By morif96 in forum Video Streaming DownloadingReplies: 0Last Post: 3rd Apr 2020, 21:41 -
Need help to get stream with token
By bayd in forum Video Streaming DownloadingReplies: 2Last Post: 17th Dec 2019, 13:42