Page 1 of 1

Player sync

Posted: Tue Jun 17, 2025 11:07 am
by Roby82
Hello everyone,

I have almost always used CHPlayer version 3.

Is there a more valid and simple alternative to use to synchronize video and audio files?

Thanks :wave:

Re: Player sync

Posted: Tue Jun 17, 2025 9:28 pm
by maulakai
I have just used 2 instances of vlc and hit play on both at roughly the same time.

My scriptplayer software stopped working recently, won't play video. I'm curious what other people use

Re: Player sync

Posted: Tue Jun 17, 2025 10:25 pm
by puste
If you whant anoter player that uses VLC and not Microsoft Midea Player like CHPlayer V3 do then you can try E-Stim Player
https://discuss.eroscripts.com/t/e-stim-player/261945

But you have to compile the program with Python.

Thanks for using CHPlayer. !

Re: Player sync

Posted: Wed Jun 18, 2025 2:07 am
by jtcrave69
I use vlcsync. It's good enough for estim files.

https://github.com/mrkeuz/vlcsync

Re: Player sync

Posted: Wed Jun 18, 2025 12:52 pm
by 47dahc
maulakai wrote: Tue Jun 17, 2025 9:28 pm ...I'm curious what other people use
Anytime there is a dedicated ESTIM file, I create a surround sound file with the stim audio on the rear channels. I then play using VLC and use VB Audio's Voicemeeter Banana to route the audio. Works great. I have a tutorial in my signature below.

Re: Player sync

Posted: Wed Jun 18, 2025 11:04 pm
by verynicekojak
MPV player supports adding audio, even to other channels.
https://en.wikipedia.org/wiki/Mpv_(media_player)

Playing in rear channels using batch (bat) file where first argument is video, and second is additional audio is:

Code: Select all

set filter="[aid1][aid2]join=inputs=2:channel_layout=quad:map=1.FL-BL|1.FR-BR[ao]"
mpv %1 --external-file=%2 --audio-device="auto" --lavfi-complex=%filter%