Merging Estim Audio and Video to surround file

Discussion about Cock Hero and other sexy videos.

Moderator: andyp

Post Reply
Robohac
Curious Newbie
Curious Newbie
Posts: 2
Joined: Thu Aug 11, 2022 3:48 pm

Merging Estim Audio and Video to surround file

Post by Robohac »

Hi there,

i played trough some Surround sound Estim vids and was wondering if anyone could give me a hint how to use ffmpeg to combine estim mp3 and a tease Video to one surround file, where the Estim track is on the back surround channels. I know there are some players that sync audio and video, but that is not as convenient as simply launching a Video.

Any answers would be really helpful.
User avatar
digitalparkinglot
Explorer At Heart
Explorer At Heart
Posts: 475
Joined: Thu Mar 09, 2017 7:20 pm

Re: Merging Estim Audio and Video to surround file

Post by digitalparkinglot »

I may be the creator of several of the surround sound estim videos that you've seen. I do it in Adobe Premier Pro. It's really easy to do it there. You might be able to find and old version or a free version ;-). I'm afraid I don't know enough about ffmpeg to tell you how to do it, but I know I've seen others talk about how they do it using ffmpeg.

-digitalparkinglot
Please enjoy my other creations:
Spoiler: show

CH-Blue Angel
CH-Little Caprice
CH-Dani Daniels
CH-Night & Day
CH-Breathe - Featuring Anjelica
CH-Breathe Harder - Featuring Anjelica
CH-Erotic Delirium
CH-Stacy Vs Sybil
CH-Jia Vs Michelle
CH-Mia Vs Dani
CH-Emily Vs Naomi
CH-Softcore Collaboration 3 (Produced & round #7)
CH-Softcore Collaboration 4 (Produced & round #1 Pt 2)
RLGL-Featuring Lily Ivy
RLGL-Featuring Clover
RLGL-Featuring Guerlain
RLGL-Featuring Sabrisse
RLGL-Featuring Kasey Chase
RLGL-Featuring Michaela Isizzu
RLGL-Featuring Lesbian Lovers
Ultimate Edging Challenge-Blowjob Edition
Ultimate Edging Challenge-Massage Edition

E-Stim Releases
E-Stim Fantasy
E-Stim with Michaela Isizzu
E-Stim with Guerlain
E-Stim with Kasey Chase
E-Stim with Lily Ivy
E-Stim with Liya Silver
CH-Tranquilizer
A Sinful XXX-perience
Euphoria Series
NycNum
Curious Newbie
Curious Newbie
Posts: 3
Joined: Thu Feb 06, 2014 5:04 pm
Gender: Male
Sexual Orientation: Straight

Re: Merging Estim Audio and Video to surround file

Post by NycNum »

Code: Select all

ffmpeg -i "$1" -i "$2" -codec:v copy -codec:a aac -filter_complex '[0:a][1:a]join=inputs=2:channel_layout=quad:map=0.0-FL|0.1-FR|1.0-BL|1.1-BR[a]' -map 0:v -map '[a]' "$3"
The video file goes in $1, the estim audio in $2 and the output file in $3. This creates 4.0 audio channels with the original audio in the front left/right and the estim in the rear left/right channels.
The video is passed through as is without reencoding, so this is pretty fast. The audio is reencoded as aac because the input files are usually in mp3 format.
User avatar
47dahc
Explorer At Heart
Explorer At Heart
Posts: 286
Joined: Mon Aug 03, 2020 1:43 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: Merging Estim Audio and Video to surround file

Post by 47dahc »

Check the post in my signature
Creator of MetroVerter The Metronome to Tcode converter
My Guide on How to create and mix estim surround videos
My guide on Setup TeaseAI - Awakening with Restim
User avatar
zebbg69
Explorer At Heart
Explorer At Heart
Posts: 257
Joined: Sat Jul 17, 2021 12:13 am

Re: Merging Estim Audio and Video to surround file

Post by zebbg69 »

NycNum wrote: Thu Aug 11, 2022 10:52 pm

Code: Select all

ffmpeg -i "$1" -i "$2" -codec:v copy -codec:a aac -filter_complex '[0:a][1:a]join=inputs=2:channel_layout=quad:map=0.0-FL|0.1-FR|1.0-BL|1.1-BR[a]' -map 0:v -map '[a]' "$3"
For large videos, remove "-codec:v copy" to get ffmpeg's default re-encoding which is very good at reducing file size at the same quality. If your output file ends in .mp4, it will automatically go to h.264 mpeg.

You can pick a different video format with "-codec:v blah" where "blah" is the codec you want, instead of "copy." To find out your ffmpeg's available codecs and formats, enter "ffmpeg -codecs" and "ffmpeg -formats."
Post Reply