Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/sim0n00ps/OF-DL
Browse files Browse the repository at this point in the history
  • Loading branch information
sim0n00ps committed May 7, 2023
2 parents a245385 + fa14cce commit 9a1a419
Showing 1 changed file with 31 additions and 5 deletions.
36 changes: 31 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,19 @@
Scrape all the media from an OnlyFans account
# Prerequisites
This app is written in .NET 7.0 so you will need to have the .NET runtime installed in order to run the program.
1. Get the latest version here https://dotnet.microsoft.com/en-us/download/dotnet/7.0, you need to download the .NET Runtime 7.X.X which is located on the right hand side of the screen (you may need to scroll down the page to find it).
1. Get version 7.0.4 here https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/runtime-7.0.4-windows-x86-installer.
2. Download and run the installer.
3. Verfiy installation by opening Command Prompt or Powershell and run the `dotnet --list-runtimes` command, you should see that .NET 7 is listed.
3. Verfiy installation by opening Command Prompt or Powershell and run the `dotnet --list-runtimes` command, you should see that .NET 7.0.4 is listed.

Next you need to download yt-dlp, ffmpeg and mp4decrypt in order to download DRM protected videos.
1. Download `yt-dlp.exe` from the latest release which you can find here https://github.com/yt-dlp/yt-dlp/releases.
2. Download ffmpeg from https://www.gyan.dev/ffmpeg/builds/ you need to download the `ffmpeg-release-essentials.zip`, unzip that file and ffmpeg.exe should be in the extracted folder.
3. Download the binaries from https://www.bento4.com/downloads/ extract the zip file and within the `bin` folder you should find `mp4decrypt.exe`.

I would recommend copying all 3 of the .exe files somewhere safe where you can then add the path of each file to `auth.json` file. You can do this easily by holding `shift` when right clicking on the .exe file which should give you the option to `copy as path`, this will include `\` so you will need to replace them with `/`. In the auth.json file the lines should look something like this `"YTDLP_PATH": "C:/yt-dlp.exe"`, `"FFMPEG_PATH": "C:/ffmpeg.exe"` and `"MP4DECRYPT_PATH": "C:/mp4decrypt.exe"`
# Running the program
Make sure you download the latest release from the [releases](https://github.com/sim0n00ps/OF-DL/releases) page and unzip the .zip file to a location where you want to download content to.
You should have 2 files in the folder you just created by unzipping the zip file, OF DL.exe and auth.json.
You should have 2 files in the folder you just created by unzipping the zip file, OF DL.exe and auth.json.

First you need to fill out the auth.json file.
1. Go to www.onlyfans.com and login.
Expand All @@ -18,14 +25,33 @@ First you need to fill out the auth.json file.

4. Click on one of the requests (if nothing shows up refresh the page or click on one of the tabs such as messages to make something appear).
5. After clicking on a request, make sure the headers tab is selected and then scroll down to find the 'Request Headers' section, this is where you should be able to find the information you need.
6. Copy the values of `cookie`, `user-agent`, `user-id` and `x-bc` to the auth.json file.
6. Copy the values of `cookie`, `user-agent`, `user-id` (this should just be a number, do not include a `u`) and `x-bc` to the `auth.json` file where the paths to yt-dlp, ffmpeg and mp4decrypt should already be.
7. Save the file and you should be ready to go!

You should have something like this:

`"USER_ID": "123456789"` - Do NOT include the `u` that gets exported using the Onlyfans Cookie Helper

`"USER_AGENT": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36"` - Make sure this is set to your user-agent value

`"X_BC": "2a9b28a68e7c03a9f0d3b98c28d70e8105e1f1df"` - Make sure this is set to your x-bc value

`"COOKIE": "auth_id=123456789; sess=k3s9tnzdc8vt2h47ljxpmwqy5r;"` - Make sure you set auth_id to the same value as `user-id` and that you set your `sess` to your actual `sess` value, everytime you log out of Onlyfans this value will change so make sure to update it after every login.

`"YTDLP_PATH": "C:/yt-dlp.exe"` - Make sure this is set to your location of yt-dlp.exe

`"FFMPEG_PATH": "C:/ffmpeg.exe"` - Make sure this is set to your location of ffmpeg.exe

`"MP4DECRYPT_PATH": "C:/mp4decrypt.exe"` - Make sure this is set to your location of mp4decrypt.exe


After you have filled out the auth.json file you can double click on the OF DL.exe to run the program.
You should see something like this:
![image](https://user-images.githubusercontent.com/132307467/235548153-107f3f44-aa00-4946-8432-458329142007.png)

If the auth.json has been filled out correctly you should see a message in green text `Logged In successfully as {Your Username} {Your User Id}`
First of all the paths you entered for yt-dlp, ffmpeg and mp4decrypt are checked to see if they are valid. You will a see a green message if the path is valid and a red message if the path is not valid.

If the auth.json has been filled out correctly and yt-dlp, ffmpeg and mp4decrypt have been located, you should see a message in green text `Logged In successfully as {Your Username} {Your User Id}`.
However if the auth.json has been filled out but cannot log in successfully with the credentials provided then a message in red text will appear `Auth failed, please check the values in auth.json are correct, press any key to exit`. This means you need to go back and fill in the auth.json file again.

If you're logged in successfully then you will be greeted with a selection prompt. To navigate the menu the can use the ↑ & ↓ arrows and press `enter` to choose that option.
Expand Down

0 comments on commit 9a1a419

Please sign in to comment.