-
Download all the files in this folder.
-
Open edi.exe.
-
Enter your handy key.
-
Start experimenting with the playback control box/buttons.
-
Open the definition.csv file and videos with the funscripts using OFS from Gallery Folder. Try to understand how these files are related and make sense of them.
-
Open the Swagger link.
-
Execute playback commands (e.g., play, stop, pause, resume) using Swagger or your own code in any programming language.
-
You can also press F12 in Chrome, open the console, and paste this JavaScript lines to trigger the play command:
var galleryName = 'lv1_oppaiwall_pis';
fetch('http://localhost:5000/edi/play/'+galleryName, { method: 'POST' }).then(response => console.log(response));
-
Create your own scripts and definition file.
-
Modify a game to call the edi URL (http://localhost:5000/edi/) with an HTTP POST request, using the same playback commands you executed in Swagger.
Each step in this quick guide is explained in greater depth in the original post. If at any point you feel stuck, refer to it for more details.