Re: 300+ VR Funscript Files
Posted: Tue Nov 09, 2021 9:49 am
This is my setup:LondonGent wrote: Mon Nov 08, 2021 2:20 pmIt's easier to just use ScriptPlayer (or something similar) which can play the estim mp3 in sync with the video. Use a set of USB/Bluetooth headphones to listen to the audio, and send the estim audio out of the regular 3.5mm jack.19Hellothere83 wrote: Mon Nov 08, 2021 11:44 amFor the quad surround Soundtrack i guess i need a special soundcard in order to give out the estim track and the notmal sound separately!?
Sample rate determines file size and processing time. Unless you're using very high frequencies 22050 Hz should be more than enough.19Hellothere83 wrote: Mon Nov 08, 2021 11:46 am With that converter any suggestions on the basic setup (sample rate and frequency?)
Frequency is more of a personal taste thing. Higher frequencies feel 'smoother' but require more power to achieve the same intensity. Lower frequencies are stronger but rougher. The estim files I post here are usually converted using 777Hz but anywhere around 800Hz is a good place to start. From there try 600Hz and 1200Hz and see how they compare.
I drop the mp3 and the mp4 (or other video format) into one folder. The files need to have the same file name and the conversion starts in a batch.
for f in *.mp4; do ffmpeg -i "$f" \
-i "${f%mp4}mp3" \
-filter_complex '[0:a][1:a]join=inputs=2:channel_layout=quad:map=0.FR-FL|0.FR-FR|1.FL-BL|1.FR-BR[q]' \
-metadata:s:v title="video" \
-metadata:s:a title="Quad: front=movie, rear=estim" \
-map 0:v -map "[q]" "${f%.mp4}_200_400_800.mp4"; done
For me this is much better than script player or something else. I use MAC OSX and there you could easily link channels to outputs (MIDI-setup with 4 channels). I have only to start the video and that's it. I think there are also tools like this in a Windows-environment.
As for frequencies I also tried a lot. At the moment I prefer 200,400,800 (don't know why, just by random). What I don't know ist how the three values interact (1: Left channel, 2: common, 3.Right channel or what else ?).