Hello kind forum residents!
I'm facing this problem, I can't upload a video:
https://privnote.com/DeSZt4ce#5DO1XlCXf
The link m3u8 does not give any stream, yt-dlp gives an error:
WARNING: [generic] Falling back on generic information extractor
WARNING: [generic] URL could be a direct video link, returning it as such.
ERROR: [generic] dcec2046-4c2b-4367-8ca5-ebf9da43ffc1: Requested format is not available. Use --list-formats for a list of available formats
Can you please tell me which way to dig? As I understand, the stream is encrypted? I will be grateful for any help.
Support our site by donate $5 directly to us Thanks!!!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
Try StreamFab Downloader and download streaming video from Netflix, Amazon!
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 7 of 7
			
		- 
	
- 
	https://www.transfernow.net/dl/20240905qCkPAAg9 
 
 Edit: no idea why you've hidden that video URL on a link that will soon expire.
 
 https://stream.online-academy.ir//axqatxyj3i3y//iframe--[----->+<]>.++++++++++++.---.--------.
 [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
- 
	Thank you so much! 
 But can you explain to me at least briefly how exactly you downloaded it?
 
 
 Is this program widefrog for this?
- 
	It has nothing to do with it since it's not in the list of supported sites (you can read the post to see what's supported). As for how I did it briefly, I extracted the m3u8 file from the JS code. 
 
 video.txt
 
 Change to m3u8 and run
 For the extraction I went in the source code of adaptor.js and Ctrl+F searched for "parseLevelPlaylist = function" then I injected this code at the beginning of the functionCode:N_m3u8DL-RE video.m3u8 
 I refreshed the page, selected the 720p stream and downloaded locally the m3u8 file. Then I used N_m3u8DL-RE on it. For some reason the 360p doesn't work. Gives a lot of 403s. I am 100% sure there are easier and smarter solutions than this but I didn't care that much to bother looking for them. If it's too complicated, wait for someone else to post an easier solution.Code:const blob = new Blob([t], { type: "text/plain" }); const link = document.createElement("a"); link.href = window.URL.createObjectURL(blob); link.download = "video.m3u8"; document.body.appendChild(link); link.click(); document.body.removeChild(link);--[----->+<]>.++++++++++++.---.--------.
 [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
- 
	Very interesting.Code:const blob = new Blob([t], { type: "text/plain" }); const link = document.createElement("a"); link.href = window.URL.createObjectURL(blob); link.download = "video.m3u8"; document.body.appendChild(link); link.click(); document.body.removeChild(link);
 
 Kindly tell, is this a standard injected piece of code or is this code unique to this site?
 
 A little explanation of this code would be interesting.
 
 Thanks
- 
	Eh, so-so. It's dependent on the input variable (among others). In this case it was a parameter that was only keeping a text string value. Usually I would have just placed a breakpoint and directly copy the value of the text. But it was too long to copy in debugger so I just saved it directly. 
 
 The piece of code is more like a template. You have to modify it accordingly to each site and know where to place it. Sometimes it may not be enough. For example you may want to save N keys for a HLS AES stream.
 
 Eh, you basically save the text variable in a blob. Spawn a node <a></a> on the page. Make it redirect to a URL that points to that blob variable you created. Auto click it and then get rid of the spawned node.
 
 But you shouldn't bother with such things. I only did it because I didn't wanna waste time understanding their m3u8 decryption method. It's laziness.--[----->+<]>.++++++++++++.---.--------.
 [*drm mass downloader: widefrog*]~~~~~~~~~~~[*how to make your own mass downloader: guide*]
- 
	@Pepe 
 Thanks for the reply and the explanation.
 
 Not in my opinion. I consider it to be brilliant. This piece of code deserves a lot more studying (by me).Code:But you shouldn't bother with such things. I only did it because I didn't wanna waste time understanding their m3u8 decryption method. It's laziness. 
 
 You're an absolutely amazing programmer
Similar Threads
- 
  Download/rip video Prime video (amazon)By HDstream in forum Video Streaming DownloadingReplies: 3Last Post: 8th Jun 2024, 03:48
- 
  DOWNLOAD protected DRM video separated video and audio from (learnyst)By yassin in forum Video Streaming DownloadingReplies: 4Last Post: 8th Jan 2024, 05:36
- 
  Cannot download encrypted m3u8 video, the video works on the websiteBy krestek in forum Video Streaming DownloadingReplies: 6Last Post: 21st Feb 2022, 15:27
- 
  Download HLS video using FFMPEG with separate video and audio URLs?By oschrndz in forum Video Streaming DownloadingReplies: 2Last Post: 15th Dec 2020, 14:53
- 
  how to download a portion of video from m3u8 that has separate video audio.By adi111 in forum Video Streaming DownloadingReplies: 8Last Post: 5th Aug 2020, 15:53


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			
 Quote
 Quote 
			




