Fakes Faking Programs/Websites

steeldaisy

New member
Mar 19, 2024
2
1
If you have a very good NVIDIA GPU and you're willing to do some technical stuff, the best software is free. ComfyUI + something like this for face swap: .

If you want to alter existing images (not face swap), is pretty good in my tests.
 
  • Like
Reactions: james998
Comment
Dec 13, 2022
49
1,496
This VPN has a very poor reputation. You better use ProtonVPN with Japan servers. To do so for free you will need to use TunnlTo app unless you live in Asia (ProtonVPN client connects you to Japan servers automatically). Just download your Japan server wireguard profile from ProtonVPN account and load it with TunnelTo. Then add your browser/download manager to allowed apps list. E.g.: chrome.exe, brave.exe, IDMan.exe ( ).
 
Comment
Dec 13, 2022
49
1,496
One video I've downloaded as a test. I downloaded it with IDM. Video source itself is not geo-restricted so VPN connection is not necessary for download managers. Using IDM the video is downloaded as ts file because the source consists from small split ts files. I had to remux ts video file to mp4 with ffmpeg [ffmpeg -i input.ts -c copy output.mp4]. XDM which was recommended by Ionic Spark seems to remux ts files to mp4 automatically. I haven't tried it myself yet.

Edit:
Added another video which continues from the previous video.
 
  • Like
Reactions: MRGOO
Comment
Nov 2, 2023
7
73
I am able to download from the site using chrome, I need to use a VPN. I use the HLS Downloader extension to find, combine and download the .ts file. Since I need to download through a VPN its a slow process also the search gets wonky at times. It helps to also have an extension that forces right click.
 
  • Like
Reactions: hevaz
Comment
Dec 13, 2022
49
1,496
If you open a "Network" tab in browser's "Developer tools" you will see that small ts files (video1.ts, video2.ts, video3.ts...) are being loaded while video is playing/buffering. So your downloader combines them into one ts file in the end. You can also preview m3u8 playlist file (Network > Name > video.m3u8 > Preview) which has all ts files "listed" in it. One ts file seems to be 4 seconds in length.
 
Comment
Dec 13, 2022
49
1,496
I can give you an easier and significantly faster method with ffmpeg. You seem to understand how to acquire full url to m3u8 playlist file. It is very easy to do it by modifying urls of video thumbnails. When you have this url, you can run this batch script bellow I've created. It will quickly download you videos even without VPN directly to mp4 file.
Code:
:start
@set /p url="Enter url to video.m3u8 playlist in preferred and available resolution (e.g.: https://.../1080p/video.m3u8; https://.../720p/video.m3u8; https://.../842x480/video.m3u8): "
@if "%url%" EQU "" goto start
:fname
@set /p name="Enter video name (without .mp4): "
@if "%name%" EQU "" goto fname
ffmpeg -hide_banner -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" -headers "Referer:https://iframe.mediadelivery.net/" -i "%url%" -c copy "%name%.mp4"
@pause
@goto start

To check available resolutions with ffprobe. You can also use ffmpeg but it doesn't like that there is no output file. Not nice solution but does the job. Better would be to just download it and show its textual content.
Code:
:start
@set /p purl="Enter url to playlist.m3u8 to check available resolutions (e.g.: https://.../playlist.m3u8): "
@if "%purl%" EQU "" goto start
ffprobe -hide_banner -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" -headers "Referer:https://iframe.mediadelivery.net/" -i "%purl%"
@pause
@goto start
 
Comment