Fakes Faking Programs/Websites

Since I haven't seen a definitive list of faking programs/websites, I decided to compile a few of the best in each category (I apologize if these have been posted before):

Website:
Pros: Very good deepfakes, easy to use, powerful computer not needed
Cons: Limited fakes, crypto payment only, limited customizability

Program:
Pros: Pretty good deepfakes, easy to use, unlimited quantity, fast on good hardware, upscaling and many other features (size selection, color correction, etc.), can do some videos, free
Cons: Needs good hardware to be able to do them fast, relatively big (A few gigs for the models), slightly worse results than deepsukebe

Deepfakes (Videos):
Pros: One of the best at video deepfakes, good community to troubleshoot with, free
Cons: Needs powerful hardware or else training takes weeks, Hard to learn

Feel free to share any other programs/websites that you like .
 
Dec 13, 2022
49
1,521
I made integrated scripts with resolution checks. You can paste any url (thumbnail.jpg; playlist.m3u8; video.m3u8) and it should "deal" with it. It is very convenient. The easiest one is by using thumbnail.jpg url. Just "Copy image address" for a thumbnail of the video you want.

Scripts with manual resolution selection:
Code:
:start
@echo off
if exist "playlist.m3u8" del "playlist.m3u8"
set agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
set referer=https://iframe.mediadelivery.net/

:playlist
set /p turl="Enter url (thumbnail.jpg; playlist.m3u8; video.m3u8): " || set "turl="
if "%turl%" EQU "" goto playlist
echo.%turl% | findstr /R "\<https://.*/thumbnail\.jpg\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/playlist\.m3u8\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/video\.m3u8\>" && goto playlist-url || goto playlist

:playlist-url
set purl=%turl%
if "%purl%" EQU "" goto start
set "purl=%purl:thumbnail.jpg=playlist.m3u8%"
set "purl=%purl:1080p/video.m3u8=playlist.m3u8%"
set "purl=%purl:720p/video.m3u8=playlist.m3u8%"
set "purl=%purl:480p/video.m3u8=playlist.m3u8%"
set "purl=%purl:1920x1080/video.m3u8=playlist.m3u8%"
set "purl=%purl:1280x720/video.m3u8=playlist.m3u8%"
set "purl=%purl:842x480/video.m3u8=playlist.m3u8%"
echo Final playlist.m3u8 url: %purl%
echo.
echo Available resolutions:
if exist "playlist.m3u8" del "playlist.m3u8"
wget --user-agent="%agent%" --header="Referer: %referer%" -O playlist.m3u8 -q "%purl%"
type playlist.m3u8

set url=%turl%

:date
set /p older="Was video uploaded at 2024-02-08 or earlier (y/n)?: " || set "older="
if "%older%" EQU "" goto date
if "%older%" EQU "y" goto vres-old
if "%older%" EQU "n" goto vres
goto date

:vres
set /p res="Video resolution to stream, must be available (1080p[1]; 720p[2]; 480p[3]): " || set "res="
if "%res%" EQU "" goto vres
if "%res%" EQU "1080p" goto 1080p
if "%res%" EQU "1" goto 1080p
if "%res%" EQU "720p" goto 720p
if "%res%" EQU "2" goto 720p
if "%res%" EQU "480p" goto 480p
if "%res%" EQU "3" goto 480p
goto vres

:vres-old
set /p res="Video resolution to stream, must be available (1080p[1]; 720p[2]; 480p[3]): " || set "res="
if "%res%" EQU "" goto vres-old
if "%res%" EQU "1080p" goto 1080p-old
if "%res%" EQU "1" goto 1080p-old
if "%res%" EQU "720p" goto 720p-old
if "%res%" EQU "2" goto 720p-old
if "%res%" EQU "480p" goto 480p-old
if "%res%" EQU "3" goto 480p-old
goto vres-old

:stream
if exist "playlist.m3u8" del "playlist.m3u8"
echo Final video.m3u8 url: %url%
@echo on
"C:\Program Files\VideoLAN\VLC\vlc.exe" --http-user-agent="%agent%" --http-referrer="%referer%" "%url%"
@echo.
@goto start

:1080p
set "url=%url:thumbnail.jpg=1080p/video.m3u8%"
set "url=%url:playlist.m3u8=1080p/video.m3u8%"
set "url=%url:720p/video.m3u8=1080p/video.m3u8%"
set "url=%url:480p/video.m3u8=1080p/video.m3u8%"
goto stream
:720p
set "url=%url:thumbnail.jpg=720p/video.m3u8%"
set "url=%url:playlist.m3u8=720p/video.m3u8%"
set "url=%url:1080p/video.m3u8=720p/video.m3u8%"
set "url=%url:480p/video.m3u8=720p/video.m3u8%"
goto stream
:480p
set "url=%url:thumbnail.jpg=480p/video.m3u8%"
set "url=%url:playlist.m3u8=480p/video.m3u8%"
set "url=%url:1080p/video.m3u8=480p/video.m3u8%"
set "url=%url:720p/video.m3u8=480p/video.m3u8%"
goto stream

:1080p-old
set "url=%url:thumbnail.jpg=1920x1080/video.m3u8%"
set "url=%url:playlist.m3u8=1920x1080/video.m3u8%"
set "url=%url:1280x720/video.m3u8=1920x1080/video.m3u8%"
set "url=%url:842x480/video.m3u8=1920x1080/video.m3u8%"
goto stream
:720p-old
set "url=%url:thumbnail.jpg=1280x720/video.m3u8%"
set "url=%url:playlist.m3u8=1280x720/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=1280x720/video.m3u8%"
set "url=%url:842x480/video.m3u8=1280x720/video.m3u8%"
goto stream
:480p-old
set "url=%url:thumbnail.jpg=842x480/video.m3u8%"
set "url=%url:playlist.m3u8=842x480/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=842x480/video.m3u8%"
set "url=%url:1280x720/video.m3u8=842x480/video.m3u8%"
goto stream
Code:
:start
@echo off
if exist "playlist.m3u8" del "playlist.m3u8"
set agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
set referer=https://iframe.mediadelivery.net/

:fname
set /p name="Enter video file name (without .mp4): " || set "name="
if "%name%" EQU "" goto fname

:playlist
set /p turl="Enter url (thumbnail.jpg; playlist.m3u8; video.m3u8): " || set "turl="
if "%turl%" EQU "" goto playlist
echo.%turl% | findstr /R "\<https://.*/thumbnail\.jpg\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/playlist\.m3u8\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/video\.m3u8\>" && goto playlist-url || goto playlist

:playlist-url
set purl=%turl%
if "%purl%" EQU "" goto start
set "purl=%purl:thumbnail.jpg=playlist.m3u8%"
set "purl=%purl:1080p/video.m3u8=playlist.m3u8%"
set "purl=%purl:720p/video.m3u8=playlist.m3u8%"
set "purl=%purl:480p/video.m3u8=playlist.m3u8%"
set "purl=%purl:1920x1080/video.m3u8=playlist.m3u8%"
set "purl=%purl:1280x720/video.m3u8=playlist.m3u8%"
set "purl=%purl:842x480/video.m3u8=playlist.m3u8%"
echo Final playlist.m3u8 url: %purl%
echo.
echo Available resolutions:
if exist "playlist.m3u8" del "playlist.m3u8"
wget --user-agent="%agent%" --header="Referer: %referer%" -O playlist.m3u8 -q "%purl%"
type playlist.m3u8

set url=%turl%

:date
set /p older="Was video uploaded at 2024-02-08 or earlier (y/n)?: " || set "older="
if "%older%" EQU "" goto date
if "%older%" EQU "y" goto vres-old
if "%older%" EQU "n" goto vres
goto date

:vres
set /p res="Video resolution to download, must be available (1080p[1]; 720p[2]; 480p[3]): " || set "res="
if "%res%" EQU "" goto vres
if "%res%" EQU "1080p" goto 1080p
if "%res%" EQU "1" goto 1080p
if "%res%" EQU "720p" goto 720p
if "%res%" EQU "2" goto 720p
if "%res%" EQU "480p" goto 480p
if "%res%" EQU "3" goto 480p
goto vres

:vres-old
set /p res="Video resolution to download, must be available (1080p[1]; 720p[2]; 480p[3]): " || set "res="
if "%res%" EQU "" goto vres-old
if "%res%" EQU "1080p" goto 1080p-old
if "%res%" EQU "1" goto 1080p-old
if "%res%" EQU "720p" goto 720p-old
if "%res%" EQU "2" goto 720p-old
if "%res%" EQU "480p" goto 480p-old
if "%res%" EQU "3" goto 480p-old
goto vres-old

:download
if exist "playlist.m3u8" del "playlist.m3u8"
echo Final video.m3u8 url: %url%
@echo on
ffmpeg -hide_banner -user_agent "%agent%" -headers "Referer:%referer%" -i "%url%" -movflags faststart -fflags +bitexact -c copy "%name%.mp4"
@goto start

:1080p
set "url=%url:thumbnail.jpg=1080p/video.m3u8%"
set "url=%url:playlist.m3u8=1080p/video.m3u8%"
set "url=%url:720p/video.m3u8=1080p/video.m3u8%"
set "url=%url:480p/video.m3u8=1080p/video.m3u8%"
goto download
:720p
set "url=%url:thumbnail.jpg=720p/video.m3u8%"
set "url=%url:playlist.m3u8=720p/video.m3u8%"
set "url=%url:1080p/video.m3u8=720p/video.m3u8%"
set "url=%url:480p/video.m3u8=720p/video.m3u8%"
goto download
:480p
set "url=%url:thumbnail.jpg=480p/video.m3u8%"
set "url=%url:playlist.m3u8=480p/video.m3u8%"
set "url=%url:1080p/video.m3u8=480p/video.m3u8%"
set "url=%url:720p/video.m3u8=480p/video.m3u8%"
goto download

:1080p-old
set "url=%url:thumbnail.jpg=1920x1080/video.m3u8%"
set "url=%url:playlist.m3u8=1920x1080/video.m3u8%"
set "url=%url:1280x720/video.m3u8=1920x1080/video.m3u8%"
set "url=%url:842x480/video.m3u8=1920x1080/video.m3u8%"
goto download
:720p-old
set "url=%url:thumbnail.jpg=1280x720/video.m3u8%"
set "url=%url:playlist.m3u8=1280x720/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=1280x720/video.m3u8%"
set "url=%url:842x480/video.m3u8=1280x720/video.m3u8%"
goto download
:480p-old
set "url=%url:thumbnail.jpg=842x480/video.m3u8%"
set "url=%url:playlist.m3u8=842x480/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=842x480/video.m3u8%"
set "url=%url:1280x720/video.m3u8=842x480/video.m3u8%"
goto download

Scripts with automatic highest resolution selection (RECOMMENDED):
Code:
:start
@echo off
if exist "playlist.m3u8" del "playlist.m3u8"
set agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
set referer=https://iframe.mediadelivery.net/

:playlist
set /p turl="Enter url (thumbnail.jpg; playlist.m3u8; video.m3u8): " || set "turl="
if "%turl%" EQU "" goto playlist
echo.%turl% | findstr /R "\<https://.*/thumbnail\.jpg\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/playlist\.m3u8\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/video\.m3u8\>" && goto playlist-url || goto playlist

:playlist-url
set purl=%turl%
if "%purl%" EQU "" goto start
set "purl=%purl:thumbnail.jpg=playlist.m3u8%"
set "purl=%purl:1080p/video.m3u8=playlist.m3u8%"
set "purl=%purl:720p/video.m3u8=playlist.m3u8%"
set "purl=%purl:480p/video.m3u8=playlist.m3u8%"
set "purl=%purl:1920x1080/video.m3u8=playlist.m3u8%"
set "purl=%purl:1280x720/video.m3u8=playlist.m3u8%"
set "purl=%purl:842x480/video.m3u8=playlist.m3u8%"
echo Final playlist.m3u8 url: %purl%
echo.
echo Available resolutions:
if exist "playlist.m3u8" del "playlist.m3u8"
wget --user-agent="%agent%" --header="Referer: %referer%" -O playlist.m3u8 -q "%purl%"
type playlist.m3u8

set url=%turl%

:auto-check
echo.
findstr /c:"1080p/video.m3u8" playlist.m3u8 && goto 1080p || findstr /c:"720p/video.m3u8" playlist.m3u8 && goto 720p || findstr /c:"480p/video.m3u8" playlist.m3u8 && goto 480p || findstr /c:"1920x1080/video.m3u8" playlist.m3u8 && goto 1080p-old || findstr /c:"1280x720/video.m3u8" playlist.m3u8 && goto 720p-old || findstr /c:"842x480/video.m3u8" playlist.m3u8 && goto 480p-old || echo Supported resolutions were not found in playlist.m3u8 file. & echo. & goto start
echo.

:stream
if exist "playlist.m3u8" del "playlist.m3u8"
echo Final video.m3u8 url: %url%
@echo on
"C:\Program Files\VideoLAN\VLC\vlc.exe" --http-user-agent="%agent%" --http-referrer="%referer%" "%url%"
@echo.
@goto start

:1080p
set "url=%url:thumbnail.jpg=1080p/video.m3u8%"
set "url=%url:playlist.m3u8=1080p/video.m3u8%"
set "url=%url:720p/video.m3u8=1080p/video.m3u8%"
set "url=%url:480p/video.m3u8=1080p/video.m3u8%"
goto stream
:720p
set "url=%url:thumbnail.jpg=720p/video.m3u8%"
set "url=%url:playlist.m3u8=720p/video.m3u8%"
set "url=%url:1080p/video.m3u8=720p/video.m3u8%"
set "url=%url:480p/video.m3u8=720p/video.m3u8%"
goto stream
:480p
set "url=%url:thumbnail.jpg=480p/video.m3u8%"
set "url=%url:playlist.m3u8=480p/video.m3u8%"
set "url=%url:1080p/video.m3u8=480p/video.m3u8%"
set "url=%url:720p/video.m3u8=480p/video.m3u8%"
goto stream

:1080p-old
set "url=%url:thumbnail.jpg=1920x1080/video.m3u8%"
set "url=%url:playlist.m3u8=1920x1080/video.m3u8%"
set "url=%url:1280x720/video.m3u8=1920x1080/video.m3u8%"
set "url=%url:842x480/video.m3u8=1920x1080/video.m3u8%"
goto stream
:720p-old
set "url=%url:thumbnail.jpg=1280x720/video.m3u8%"
set "url=%url:playlist.m3u8=1280x720/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=1280x720/video.m3u8%"
set "url=%url:842x480/video.m3u8=1280x720/video.m3u8%"
goto stream
:480p-old
set "url=%url:thumbnail.jpg=842x480/video.m3u8%"
set "url=%url:playlist.m3u8=842x480/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=842x480/video.m3u8%"
set "url=%url:1280x720/video.m3u8=842x480/video.m3u8%"
goto stream
Code:
:start
@echo off
if exist "playlist.m3u8" del "playlist.m3u8"
set agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
set referer=https://iframe.mediadelivery.net/

:fname
set /p name="Enter video file name (without .mp4): " || set "name="
if "%name%" EQU "" goto fname

:playlist
set /p turl="Enter url (thumbnail.jpg; playlist.m3u8; video.m3u8): " || set "turl="
if "%turl%" EQU "" goto playlist
echo.%turl% | findstr /R "\<https://.*/thumbnail\.jpg\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/playlist\.m3u8\>" && goto playlist-url || echo.%turl% | findstr /R "\<https://.*/video\.m3u8\>" && goto playlist-url || goto playlist

:playlist-url
set purl=%turl%
if "%purl%" EQU "" goto start
set "purl=%purl:thumbnail.jpg=playlist.m3u8%"
set "purl=%purl:1080p/video.m3u8=playlist.m3u8%"
set "purl=%purl:720p/video.m3u8=playlist.m3u8%"
set "purl=%purl:480p/video.m3u8=playlist.m3u8%"
set "purl=%purl:1920x1080/video.m3u8=playlist.m3u8%"
set "purl=%purl:1280x720/video.m3u8=playlist.m3u8%"
set "purl=%purl:842x480/video.m3u8=playlist.m3u8%"
echo Final playlist.m3u8 url: %purl%
echo.
echo Available resolutions:
if exist "playlist.m3u8" del "playlist.m3u8"
wget --user-agent="%agent%" --header="Referer: %referer%" -O playlist.m3u8 -q "%purl%"
type playlist.m3u8

set url=%turl%

:auto-check
echo.
findstr /c:"1080p/video.m3u8" playlist.m3u8 && goto 1080p || findstr /c:"720p/video.m3u8" playlist.m3u8 && goto 720p || findstr /c:"480p/video.m3u8" playlist.m3u8 && goto 480p || findstr /c:"1920x1080/video.m3u8" playlist.m3u8 && goto 1080p-old || findstr /c:"1280x720/video.m3u8" playlist.m3u8 && goto 720p-old || findstr /c:"842x480/video.m3u8" playlist.m3u8 && goto 480p-old || echo Supported resolutions were not found in playlist.m3u8 file. & echo. & goto start
echo.

:download
if exist "playlist.m3u8" del "playlist.m3u8"
echo Final video.m3u8 url: %url%
@echo on
ffmpeg -hide_banner -user_agent "%agent%" -headers "Referer:%referer%" -i "%url%" -movflags faststart -fflags +bitexact -c copy "%name%.mp4"
@goto start

:1080p
set "url=%url:thumbnail.jpg=1080p/video.m3u8%"
set "url=%url:playlist.m3u8=1080p/video.m3u8%"
set "url=%url:720p/video.m3u8=1080p/video.m3u8%"
set "url=%url:480p/video.m3u8=1080p/video.m3u8%"
goto download
:720p
set "url=%url:thumbnail.jpg=720p/video.m3u8%"
set "url=%url:playlist.m3u8=720p/video.m3u8%"
set "url=%url:1080p/video.m3u8=720p/video.m3u8%"
set "url=%url:480p/video.m3u8=720p/video.m3u8%"
goto download
:480p
set "url=%url:thumbnail.jpg=480p/video.m3u8%"
set "url=%url:playlist.m3u8=480p/video.m3u8%"
set "url=%url:1080p/video.m3u8=480p/video.m3u8%"
set "url=%url:720p/video.m3u8=480p/video.m3u8%"
goto download

:1080p-old
set "url=%url:thumbnail.jpg=1920x1080/video.m3u8%"
set "url=%url:playlist.m3u8=1920x1080/video.m3u8%"
set "url=%url:1280x720/video.m3u8=1920x1080/video.m3u8%"
set "url=%url:842x480/video.m3u8=1920x1080/video.m3u8%"
goto download
:720p-old
set "url=%url:thumbnail.jpg=1280x720/video.m3u8%"
set "url=%url:playlist.m3u8=1280x720/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=1280x720/video.m3u8%"
set "url=%url:842x480/video.m3u8=1280x720/video.m3u8%"
goto download
:480p-old
set "url=%url:thumbnail.jpg=842x480/video.m3u8%"
set "url=%url:playlist.m3u8=842x480/video.m3u8%"
set "url=%url:1920x1080/video.m3u8=842x480/video.m3u8%"
set "url=%url:1280x720/video.m3u8=842x480/video.m3u8%"
goto download

Update 1 [Mar 28, 2024 11:33 PM UTC]:
Made video resolution selection easier. 1 for 1080p, 2 for 720p and 3 for 480p.

Update 2 [Mar 29, 2024 02:50 AM UTC]:
Apparently older (uploaded at Feb 08, 2024 or earlier) videos have different video.m3u8 urls. So I tried to fix my "universal" scripts. Removed ffmpeg download script with ffmpeg resolution "checker" for simplicity. You may replace corresponding lines (wget + type) with ffmpeg/ffprobe one if you need it. I am not sure if "480p/video.m3u8" urls exist.

Update 3 [Apr 29, 2024 01:23 AM UTC]:
I've made new batch scripts which automatically reads supported resolutions from playlist.m3u8 file and selects the highest supported one. It also does a simple check if you've entered a correct (thumbnail.jpg; playlist.m3u8; video.m3u8) url. Removes playlist.m3u8 file when it is not required. Asks for the file name at the start for a smoother download experience. I will add new automatic scripts later. Now I updated the old scripts to match the new automatic ones (except automatic resolution selection part).

Update 4 [Apr 29, 2024 01:48 AM UTC]:
Added scripts with automatic highest resolution selection.

NOTICES:
If you want to use your local ISP connection for downloads/streaming (videos/thumbnails don't load for you without VPN) and get a better speed, you must use split tunneling function of your VPN. E.g.: set it as allowed for your web browser. It somehow helps with access to playlist.m3u8/video.m3u8 files.

You can remove "-movflags faststart " from the scripts if you use SSD drive and want to reduce writes to it or just want that downloads would complete faster. This ffmpeg command moves a MOOV atom to the front of mp4 file so you get up to 3x writes physically. This option is useful if you will share videos online as they will start their playback slightly faster as a MOOV atom will be in the front of the file.
 
Last edited:
Comment



















These are all the *** bots and sites that I use, they are all very good and make great fakes, if the site removes the links, just call PM and I'll send them in DM

New bots





 
Last edited:
3 Comments
R
Robson1984 commented
You know sites for cumshot???
 
L
Lordking753 commented
No websites, just bots in apps, some make cumshots
 
There's another video deepfaking tool called DeepFaceLab that seems to work better on AMD cards.

Deepfakes (Videos):
Pros: Very comparable results with Faceswap, works well on AMD cards
Cons: Seems to be slightly less community support than Faceswap
 
Comment
Dec 13, 2022
49
1,521
These scripts are for Windows. Its code is very similar thing to just typing textual commands in cmd.exe window. So basically a collection of such commands in a text file which cmd.exe can interpret and process.

To run it, you basically paste this code to an empty text file with .bat extension. Double click to run it. You also need to have ffmpeg.exe ( ) and wget.exe ( ) command line applications for my primitive scripts to work. Place them into some PATH location (you can create another one yourself by modifying the Windows PATH environment variable). Or to the same folder as the script. PATH location enables you to run executable files located in it from any location opened in cmd.exe. E.g.: if you type notepad in cmd.exe it will open notepad.exe as it is usually stored in "C:\Windows" (one of the Windows PATH locations)
 
Comment

olekkk

Well-known member
Contributor
Advanced Leaker
Feb 19, 2023
2,474
53,645
I use this:

- login via google or d*iscord account. To start with, we have 10 credits to use. Editing the photo probably eats up one or two credits. One of the coolest sites.


- login using: google, facebook, d*iscord, twitter, patreon, line. We get 3 credits to start. 1 goes down for each photo. We have two methods for removing things from a photo. It's cool to edit nude photos. The downside is the website logo in the lower right/left corner, but you can remove it yourself.


- login using: google, facebook, d*iscord, twitter, patreon, line. We get 3 credits to start. 1 goes down for each photo. We have two methods for removing things from a photo. It's cool to edit nude photos. The downside is the website logo in the lower right/left corner, but you can remove it yourself.


- login via Google, D*iscord, any other email address. 3 credits to start. We can transform it into lingerie, bikini, Barbie (?!?!), nudity. It turns into underwear nicely.


- login using any email account. We have 5 credits to start with. You can make them nude, topless, and tinker a bit with changing the body size.


- login via google, d*iscord. 20 credits to start with. Undressing consumes 10 credits.
 
Comment
Oct 2, 2020
184
5,966
Learning to create fake, following the step by step >








DeepFaceLab_NVIDIA_up_to_RTX2080Ti



2) extract images from video data_src.bat



3) extract images from video data_dst FULL FPS.bat



4) data_src faceset extract.bat



5) data_dst faceset extract.bat



6) train Quick96.bat



7) merge Quick96.bat



8) merged to mp4.bat





problem the face didn't stay behind the dick...







I want to do something in this quality that I thought.







How long do you need to do the training? this is my.









What did I miss, why didn't the face stay behind?





Is DeepFaceLab the best program out there for Windows or is there something better?





please tips
 
Comment
For face swapping in videos and images, I recommend using . It's free for image swapping (5 swaps per user per day) and requires purchasing credits for video swapping. The service is excellent, and the paid option is worthwhile. The swapping process is straightforward—only a video and a clear, single image of the face are needed, and the app will take care of the rest.
 
SocialBoy
SocialBoy commented
Looks great! 5 swaps plenty
 
R
renatozeb commented
:mad:
The first thing I did, this message appeared...

The link I gave above is free, this one is not.



>>>
Insufficient Credits

You need 10 credits to start this swap. You don't have enough credits at the moment. Please purchase additional credits to continue and unleash the magic of face swapping!
 
P
pericendea97 commented


Yea, I did mention that this is a paid tool, it offers 5 free swaps for images (not videos) every day, and for video swaps, it charges based on credits.😄
 
S
Sawec22 commented
Very orribile ,result shit
 
Dec 13, 2022
49
1,521
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
Dec 13, 2022
49
1,521
You can "get" playlist.m3u8 link from video thumbnails url. I wrote about it in my comment above. Then you check for available resolutions and reconstruct full url to video.m3u8 playlist. When you have it you can download it with ffmpeg even without VPN. The problem is that you won't be able to load thumbnails without VPN unless your IP address is from allowed region. But you still can see their underlying urls if you check them with Inspect Element (Ctrl+Shift+C) in Developer tools.

UPDATE:
You can't access playlist urls (with my batch scripts which provide correct referrer header) if you get them while browsing without VPN and can't load thumbnails/videos. If you get them with VPN, you can access them temporary even without VPN. It seems that accessibility window is open for ~5 minutes. So if you use TunnlTo app with ProtonVPN Japan servers as I described earlier everything should work very well (browser uses VPN, ffmpeg doesn't).
 
  • Like
Reactions: ajmcs and MRGOO
Comment
For me


is a good option, but need a account, and the "coins" is every 3 days, but you can invite someone and get somes.
It's pretty good, the nudes are very clean.
 
4 Comments
S.E.A.L T6
S.E.A.L T6 commented
after some point you get blurred images so you have to pay for it
 
W
wingautum commented
I've done around 100 images and never got blurred .___.
 
S.E.A.L T6
S.E.A.L T6 commented
how?you paid for?
 
I
Irun623 commented
just use proton mail to make a spam email address in 2 seconds and re-sign in an incognito/private browser. you can make unlimited. the last one processes super fast, but will be blurred, easily removed by using "inspect element" in your browser. I have made hundreds and it can make really impressive ones if you feed it hires photos