How to download from zhazhijiav.top?

UriF

Member
Aug 25, 2021
50
4
I tried video download helper to copy link to HLS stream to jDownloader but I got an error that jDownloder is not able to extract AES encrypted stream. Ant Downloader doesn't recognize a video at all. Is any other method to download such streams and parse int mp4 file? Thanks
 

UriF

Member
Aug 25, 2021
50
4
Code:
yt-dlp 'https://videojccdn.wzj9.com:8091/20210901/h_254rebn00073/2000kb/hls/index.m3u8'
Yesterday I found out this way
ffmpeg -i "https://videojccdn.wzj9.com:8091/20210901/h_254rebn00073/2000kb/hls/index.m3u8" -c copy -bsf:a aac_adtstoasc "D:\JDownloader\test.mp4"
It run very slowly and when all of .ts files downloaded it convert into .mp4. When it download it create a temporary .mp4 file which is a garbage (you can not open it using standard video player and I thought that it will create garbage). After process of downloading is completed from garbage .mp4 file ffmpeg cnvert it into a real .mp4 file.

Now about your suggestion. I have a Win 10 desktop. Is it enough to download binary or I have to copy ffmpeg into yt-dlp directory? Is it a true exe file and I can run it from cmd or have to run it from Python environment?

Is it a full line?
yt-dlp "https://videojccdn.wzj9.com:8091/20210901/h_254rebn00073/2000kb/hls/index.m3u8" --downloader ffmpeg --referer "https://bingsport.com/" --output "test.mp4"


Is it necesary parameters --downloader aria2c or --downloader "dash,m3u8:native"

Thanks
 

Porni

Well-Known Member
Feb 29, 2012
346
321
You can use ffmpeg directly but you may have problems with stopping the download and more
Now about your suggestion. I have a Win 10 desktop. Is it enough to download binary or I have to copy ffmpeg into yt-dlp directory? Is it a true exe file and I can run it from cmd or have to run it from Python environment?
I don't know, it's a lot easier on Linux

You don't need to use parameters if everything already works and especially if you don't know what you're doing
 

SamKook

Grand Wizard
Staff member
Super Moderator
Uploader
May 10, 2009
3,573
4,954
Download the binary, it's a standalone software you run in command line, no other requirements necessary.

For windows, all you gotta do is use double quotes(") instead of single quotes(') and it'll download the video without needing extra steps.

You may want to look at the output template section of the help though if you don't likle the name it uses to save the file.