🚨 VRBangers scenes have a different duration now, older scripts won't be in sync

Hi everyone,

I want to bring some wider attention to an issue that I think was first reported here by user @phiber

VRBangers has modified pretty much their entire backlog of scenes, removing the logo / splash screen at the very beginning of their videos, cutting around 5 seconds of video at the beginning. This makes hundreds of scripts posted here on Eroscripts off sync with these new revised versions of the videos unless we apply some corrections. These changes apply to every video that they have posted since their Octavia Red Girl of The Month scene that was posted on May 30, 2025.

This means that any VRBangers video published before that has now a new version which is around 5 seconds shorter.

Now, keep in mind that if you had these video files downloaded around the time they were first published (or possibly up to a few months ago), you won’t run into any problems because the scripts that you have are in sync with those original video files. However, if you download any of those videos from VRBangers now in the present (or in the future), and try to use those scripts -which were published around the time those scenes were originally released- they won’t be in sync

User @phiber and scripter @monsterdude22 mention that the offset between the current video files and the original funscripts is relatively consistent at -5989ms for videos that had this splash screen:

Here

And around -9993ms for scenes that had this splash screen

Here

Keep in mind however that there are some videos in which the changes can be even more than that (I’ve found out that -for example- the scene Lexi Luna Girl of The Month has an entirely different duration now).

There are a few options that can be considered if you run into this problem:

  • Fix the script by using @Zalunda’s funscript toolbox to make the adjustments for the script (I personally don’t know how to do this)
  • Apply a -5989ms / -9993ms offset on Heresphere during playback to synchronize the original scripts with the new revised video files from VRBangers.
  • Use OFS to manually correct the funscripts and adjust them to these new versions of the video.

Remember, if you have the original video files for VRBangers (with their logo/splash screen at the beginning) you will not have this problem. This only applies when downloading their currently available versions of the video from their website (or Playa) and try to use the original funscripts.

In regards to my collection, I will be adding a new version of my VRBangers funscripts compatible with their new video file versions to all the scenes that are available in my Patreon.

Another thing that should be pointed out is that these changes may be affecting VRConk scenes as well, and there are also a lot of those here in EroScripts.

Always check that the video length/duration posted in a script post here in EroScipts matches the video length/duration of the file that you have downloaded.

15 Likes

Update: I’ve just been told that the versions of the VRBangers videos that you can download from VRPorn.com are still the old ones, meaning these are not affected.

As I said, always check that the duration of the funscript matches the duration of the video file that you are using.

6 Likes

Spent all monday testing and editing scripts, absolute nightmare honestly. I cant wrap my head around why they even bothered to edit the videos like that

Great PSA - Polt. Glad I have most of my library downloaded.

Seems like some automation for Funscript Toolbox might be good to help people fix up their collections, if anyone wants to pick up the torch.

I’ve just used Zalunda’s toolbox under the guide of another user (as I said, I didn’t know how to use it), and it certainly did its job because the new script is almost in sync with the new video, but it misses the mark consistently in around 100ms, around 5 to 6 frames between where a specific action point should be and where the tool actually places it. There’s the human factor considered as well, because I may have not been dead accurate in marking an action point when I was originally scripting this file; however, as I said, the results are consistent throughout different parts of the video in missing the scripting marks in around 5 to 6 frames. This should be “good enough” for most users however, but I prefer to manually adjust them in OFS for better results. It doesn’t take me that much longer than using the Toolbox anyway.

I leave the door open to the possibility that there’s something I might be doing wrong or that the results of the Toolbox could be dead perfect in another case.

They have been adding AI scripts of their own. I bet it has something to do with that.

1 Like

One slight note/correction here: The affected scenes are those initially released before this Octavia Red scene. The Octavia Red one was the first that the studio always released without an intro, so all scripts for these should still be in sync (as long as the studio didn’t edit the scenes in any other way). The scenes before that had a splash screen initially, which has now been removed.

As you say, VR Conk scenes are indeed affected (e.g. Jumanjizz 2: The Nexxxt Level - VR Cosplay Porn Video | VR Conk had a splash screen but now doesn’t), but the offset is also -5989ms.

Finally, there is one more caveat to everything: VR Bangers (not sure about VR Conk) used to have an even longer intro. This definitely affects most 6K scenes, but also some 8K ones (e.g. Open Borders: Curvy Slovakia VR Porn Video: 8K, 4K, Full HD and 180/360 POV | VR Bangers had a free scripts released here while it still had the long splash screen). I went through a few of them, and the uniform offset for those seems to be -9993ms.

Regarding FSTB vs using this offset: Spot-checking looked to me as if using the uniform offset was more accurate. I directly compared several scenes in OFS and the actions happened on identical frames.

I’m not sure I’m following. I have checked my videos/scripts and all those videos published after the Octavia Red scene have the same length as my scripts, meaning I scripted them natively with their new format; in fact they don’t need any adjustments and they are perfectly fine with the versions that you can download today from VRBangers. However, all of my scripts before that (including the Octavia Red one for some reason) have now a different duration in comparison to what you can download today.

I think we agree with each other, maybe I just misunderstood your first post.

Also, you are right. I just re-checked again, and the Octavia Red one also initially released with an intro. I think the one after that (Leaked Video: Jay & Sophia) was the first without an intro natively

1 Like

You are right, to make matters worse they had begun using that new more modern splash screen not so long ago. I’m gonna add this info to the post with a couple of pictures to compare.

Back when they pulled VRBangers off of sexlikereal saying they had something much better planned than funscripts, it turned out to be Dezyred, and they suck even more than VRBangers now…

1 Like

For those who are comfortable using Windows Powershell I wrote a small snippet that will handle offsetting your scripts.

Once you run the script either copy the full path to the funscript (right-click → “copy as path”) and paste in to the window or drag the funscript directly in to the console window (script will handle removing extra characters) and it will spit out a script labeled -OFFSET in the same directory with the 5989ms offset in place.

In the case the script has actions before 5989ms those will be dropped and if there is no action in the first 1 second an action will be added at position 0 at 0ms.

If you wish to offset a different amount change the “-5989” on line 5 to however many milliseconds you want to offset (including “-” for negative offset).

You can also do this on https://funscript.io but figured this may be faster/easier for some.

ES Does not allow uploading .PS1 files so paste this in to a text editor and save it with file extension “.ps1”

$ScriptReference = (Read-host -Prompt "Enter script path").replace('"','').replace("'","").replace('&','').trim()

$File = Get-Item -LiteralPath $ScriptReference

$OffsetMS = -5989

If ($File)
{
    $Content = get-content $File | ConvertFrom-Json -Depth 10

    $SplitActions = $Content.Actions | Where-Object {$_.at -ge (0 - $OffsetMS)}

    $NewActions = $SplitActions | Foreach-Object {[PSCustomObject]@{"at"=[int]($_.at + $OffsetMS);"pos"=$_.pos}}

    $FinalizedActions = [System.Collections.Arraylist]@()

    If ($NewActions[0].at -ge 1000){$FinalizedActions.Add(([PSCustomObject]@{"at"=0;"pos"=0}))}
    
    $NewActions | Foreach-Object {$FinalizedActions.Add($_)}

    $NewContent = $Content

    $NewContent.Actions = $FinalizedActions

    $NewScriptName = $File.BaseName + "-OFFSET.funscript"

    $NewContent | ConvertTo-Json -Compress | Out-File ($File.Directory.FullName + '\' +$NewScriptName)

}
4 Likes

Some heroes wear haptics…

2 Likes

I wrote this in a PM to Polt, but stating it here as well:

There’s actually a third kind of intro that VR Bangers used: The pinkish visuals and “wish it was your cock i was sucking” (or something similar, kind of hard to make out clearly) voice line from the longer intro, but without the scene title splash card directly following the studio logo. Luckily, the studio used the same offset when cutting out this intro compared to the new one (-5989ms, checked with two different scenes), so it doesn’t really matter when they started changing it (although just for the record it was sometime between the 2021-06-11 Charly Summer scene which had the pink short intro and the 2021-07-02 Bridgette B, Kiara Noir threesome which already had the modern short intro).

As for the longer intro, while everyone should always double check, the point vr bangers seemed to change splash screens seems to be around the following three scenes:

2020-11-06, Chloe Lamour, https://vrbangers.com/video/open-borders-curvy-slovakia/: full long intro including title splash
2020-11-10, Kayley Gunner, https://vrbangers.com/video/veterans-day/: shortened intro (no title splash screen)
2020-11-13, Kiara Lord, https://vrbangers.com/video/redhead-fashionista/: full long intro including title splash

Everything strictly older than 2020-11-06 was likely released with the 10 second intro, while everything strictly newer than 2020-11-13 up to and including 2025-05-30 was likely released with one of the 6 second intros.

1 Like