SiteRip Others Unity RacyRivals Strip Blackjack & Poker [v2024.07.24] [S8 Entertainment LLC]

5.00 star(s) 2 Votes

damlon6688

New Member
Oct 30, 2023
7
2
Yes, this is full list:

You don't have permission to view the spoiler content. Log in or register now.

BTW. Does anyone know, is there magical trick to play this game on android?
There is apk file of this game on net, but when I start it, game shows message that it wants to connect to internet although device is already connected. I can't pass that screen.
Sadly, not that I know of. I remember I used to try it when I used to have an Android phone. Turns out the game was removed/banned from the Google Play Store and the App Store a while back.
 

damlon6688

New Member
Oct 30, 2023
7
2
I'd like to know who EgyptianGirl is (not to be confused with EgyptGirl since it's a completely different girl). This is one of the girls that I wanted and decided to buy it, which is also one of the girls I uploaded back then.

She may be also the same girl in SchoolGirls, which is actually a duo of two ladies. One of them does look like her, judging by her breasts and her nails.

Edit: this is for PokerGirls for those wondering.
 
Last edited:

blooferd

New Member
Jul 28, 2023
1
0
How were the handful of compiled videos done for RR Blackjack? I've tried myself a couple times and always end up coming up with a video and an audio file of two different lengths getting more and more de-synched as each transition goes on. Is it just a matter of painstakingly adjusting in an editing software or is there a simpler method I'm missing?

If I can figure out a way of doing it in a way that isn't excruciating for each dealer, I'd be happy to go through these and post the compiled movies for folks.
 

aaasdf53

New Member
Jan 21, 2024
1
0
If I can figure out a way of doing it in a way that isn't excruciating for each dealer, I'd be happy to go through these and post the compiled movies for folks.
Hi, I've came up with a batch file (Windows) that uses ffmpeg to compile specified video and audio files into one file. For each pair video-audio it trims result to the shortest of these two. From what I observed, audio files are slightly longer than video (not on every girl tho, some has the same length) so it should trim correctly audio without any loss to video. I've also added filter to increase height on "half screen" fragments and move them to the top of the frame.

I've checked one or two girls and the results were fine, I think.

To use it you need to download ffmpeg and edit script to point its location ("ffmpeg" variable) and path to the main girl directory ("path" variable). During process there can be some warnings or errors coming from ffmpeg but the end file seems to be fine. Variable "fileList" contains fragment names to be used and "applyFilterList" fragment names to have filter applied to them. I think the filenames are the same for all girls (I may be wrong though!) so once set should work for all. I've included intro, undress and idle fragments but you can adjust them as anyone likes.

Here is the code. Hope it helps!

Code:
@echo off
set "ffmpeg=path_to_ffmpeg" :: path to ffmpeg
set "path=path_to_girl" :: path to girl directory (directory that contains video and audio subdirectories)
set "videoPath=%path%\video"
set "audioPath=%path%\audio"
set "tempPath=%path%\tmp" :: temporary directory where files will be stored; deleted after operation
set "tempList=%tempPath%\tempList.txt"
set "fileList=ENT01 ENT02 1001 1002 1003 1004 1030A 1030B 1030C 2001 2002 2003 2004 2030A 2030B 2030C 3001 3002 3003 3004 3030A 3030B 3030C 4001 4002 4003 4004 4030A 4030B 4030C 5001 5002 5003 5004 5030A 5030B 5030C 6001 6002 6003 6004 6030A 6030B 6030C 7001 7002 7003 7004 7030A 7030B" :: list of files to combine into one video
set "applyFilterList=1001 1002 1003 1004 2001 2002 2003 2004 3001 3002 3003 3004 4001 4002 4003 4004 5001 5002 5003 5004 6001 6002 6003 6004 7001 7002 7003 7004" :: which files should have filter applied to them
set "filter=pad=width=iw:height=ih+200:x=0:y=0" :: video filter, by default add 200px to height of video and 'move' its content to the top

if not exist "%tempPath%" mkdir "%tempPath%"
if exist "%tempPath% del "%tempList%"

for %%i in (%fileList%) do (
    set "padding="
    for %%j in (%applyFilterList%) do (
        if "%%i"=="%%j" set "padding=1"
    )

    if defined padding (
        %ffmpeg% -y -loglevel quiet -i "%videoPath%\%%i.ogg" -i "%audioPath%\%%i.ogg" -c:v libx264 -c:a aac -vf %filter% -map 0:v:0 -map 1:a:0 -shortest "%tempPath%\%%i.mp4"
    ) else (
        %ffmpeg% -y -loglevel quiet -i "%videoPath%\%%i.ogg" -i "%audioPath%\%%i.ogg" -c:v libx264 -c:a aac -map 0:v:0 -map 1:a:0 -shortest "%tempPath%\%%i.mp4"
    )

    echo file '%tempPath%\%%i.mp4' >> "%tempList%"
)
%ffmpeg% -y -f concat -safe 0 -i "%tempPath%\tempList.txt" -c copy "%path%\output.mp4"
rmdir /s /q "%tempPath%"
 
5.00 star(s) 2 Votes