[New Release] The Estim Experiment - EOS Tease

All about the past, current and future webteases and the art of webteasing in general.
---
phoopha
Explorer At Heart
Explorer At Heart
Posts: 115
Joined: Sat Mar 22, 2008 12:33 pm
Gender: Male
Sexual Orientation: Straight
I am a: Submissive

Re: [New Release] The Estim Experiment - EOS Tease

Post by phoopha »

Happy as ever to beta test for you.
User avatar
lolol2
Explorer At Heart
Explorer At Heart
Posts: 507
Joined: Mon Feb 20, 2017 10:33 am
Gender: Male
Sexual Orientation: Straight

Re: [New Release] The Estim Experiment - EOS Tease

Post by lolol2 »

Oh and don't forget that the value for the volume has to be between 0 and 1.
So for 40% you need to set 0.4 instead of 40.

You can do this with volume/100 very easy. ;-)
My creations:
Spoiler: show

[Tutorial] Building your own DIY E-Stim Stereo Device

Videos:
06/2020 - Estim Sync Hero Vol. 01

Teases:
04/2020 - Estim Mansion under Quarantine
12/2019 - Estim Challenge
12/2018 - Estim Distraction
03/2018 - The Estim Tower - Endless Mode
01/2018 - The Estim Tower
05/2017 - The Estim Mansion
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

lolol2 wrote: Wed Jul 08, 2020 11:06 am Oh and don't forget that the value for the volume has to be between 0 and 1.
So for 40% you need to set 0.4 instead of 40.

You can do this with volume/100 very easy. ;-)
I am using some of the code you shared with me a few months ago, so when I play a new stim file I use

Eval - Sound.get('estim').setVolume(volume/100)

Then when i want to change volume by 0.25% I would use something like

Eval - volume = volume + 0.25

But if I understand what you are saying, this would increase the volume by 25%, not 0.25%, so I need to use 0.0025

If I have understood correctly, under way I have tease working now, rather than 1% to 100% being that, 0%-1% is actually the 100% volume range, and this is why the levels don't change during the tease like expected as the volume is almost always actually >100%


Is this correct?
Try anything once!
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

lolol2 wrote: Wed Jul 08, 2020 10:47 am
boundupone wrote: Wed Jul 08, 2020 8:55 am So I would welcome any suggestions or insight into what I am doing wrong
Do you set the volume to the correct audio identifier like I explained here at 5) ?
Everytime you change the volume variable you have to set this volume again to the current audio file that is playing.
Also everytime you change an audio file you need to set the volume again.

The volume variable is not connected to the audio file, the volume of the audio file can only be changed over the set command.
Yes, I think so, but will check again later tonight.

Thanks
Try anything once!
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

boundupone wrote: Wed Jul 08, 2020 3:35 pm
lolol2 wrote: Wed Jul 08, 2020 10:47 am
boundupone wrote: Wed Jul 08, 2020 8:55 am So I would welcome any suggestions or insight into what I am doing wrong
Do you set the volume to the correct audio identifier like I explained here at 5) ?
Everytime you change the volume variable you have to set this volume again to the current audio file that is playing.
Also everytime you change an audio file you need to set the volume again.

The volume variable is not connected to the audio file, the volume of the audio file can only be changed over the set command.
Yes, I think so, but will check again later tonight.

Thanks
Doh, school boy mistake on my side. It was due to me not realising I need to put - Sound.get('estim').setVolume(volume/100) - after every instance of a volume change. Right, off to do a few hours of checking the tease :-)
Try anything once!
User avatar
lolol2
Explorer At Heart
Explorer At Heart
Posts: 507
Joined: Mon Feb 20, 2017 10:33 am
Gender: Male
Sexual Orientation: Straight

Re: [New Release] The Estim Experiment - EOS Tease

Post by lolol2 »

Yes you need to do this after every change on your volume variable to get an effect.

With the values you have to be careful!
If you want to count in your volume variable from 0% to 100% and using the "normal" number 0 - 100.
You have to divide this with 100 in your volume set command.

Sound.get('estim').setVolume(volume/100)

Then you can normally do things like this to add 10% volume.

volume = volume + 10


But when you are using the range from 0 - 1 in your volume variable, so the numbers EOS wants to have you don't have to devide it with 100.

Sound.get('estim').setVolume(volume)

Then you have to use this to add 10% volume.

volume = volume + 0.1


DON'T MIX BOTH WORLDS! :-D
Or you will get a mess in your script and the volume wouldn't do what you want. ;-)
My creations:
Spoiler: show

[Tutorial] Building your own DIY E-Stim Stereo Device

Videos:
06/2020 - Estim Sync Hero Vol. 01

Teases:
04/2020 - Estim Mansion under Quarantine
12/2019 - Estim Challenge
12/2018 - Estim Distraction
03/2018 - The Estim Tower - Endless Mode
01/2018 - The Estim Tower
05/2017 - The Estim Mansion
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

lolol2 wrote: Wed Jul 08, 2020 6:41 pm Yes you need to do this after every change on your volume variable to get an effect.

With the values you have to be careful!
If you want to count in your volume variable from 0% to 100% and using the "normal" number 0 - 100.
You have to divide this with 100 in your volume set command.

Sound.get('estim').setVolume(volume/100)

Then you can normally do things like this to add 10% volume.

volume = volume + 10


But when you are using the range from 0 - 1 in your volume variable, so the numbers EOS wants to have you don't have to devide it with 100.

Sound.get('estim').setVolume(volume)

Then you have to use this to add 10% volume.

volume = volume + 0.1


DON'T MIX BOTH WORLDS! :-D
Or you will get a mess in your script and the volume wouldn't do what you want. ;-)
Yikes, I see what you mean, i think i have always used with '/100' though, so should be OK
Try anything once!
User avatar
lolol2
Explorer At Heart
Explorer At Heart
Posts: 507
Joined: Mon Feb 20, 2017 10:33 am
Gender: Male
Sexual Orientation: Straight

Re: [New Release] The Estim Experiment - EOS Tease

Post by lolol2 »

Please make sure you don't forget it somewhere.
If you want for example put the volume at 40% and you forget to divide it by 100, EOS will use every number >1 as max volume.
So instead of setting the volume to 40% it will play it with 100%. ;-)

Pain tease on accident. :-D
My creations:
Spoiler: show

[Tutorial] Building your own DIY E-Stim Stereo Device

Videos:
06/2020 - Estim Sync Hero Vol. 01

Teases:
04/2020 - Estim Mansion under Quarantine
12/2019 - Estim Challenge
12/2018 - Estim Distraction
03/2018 - The Estim Tower - Endless Mode
01/2018 - The Estim Tower
05/2017 - The Estim Mansion
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

OK, invites sent to the closed beta, if yours isnt in your inbox now let me know and I will resend

Also set up another thread to discuss beta phase -

viewtopic.php?f=2&t=23066

Thanks all
Try anything once!
thebears73
Explorer At Heart
Explorer At Heart
Posts: 256
Joined: Sat May 11, 2019 7:22 am

Re: [New Release] The Estim Experiment - EOS Tease

Post by thebears73 »

boundupone wrote: Wed Jul 08, 2020 9:22 pm OK, invites sent to the closed beta, if yours isnt in your inbox now let me know and I will resend

Also set up another thread to discuss beta phase -

viewtopic.php?f=2&t=23066

Thanks all
Happy to test for you as well, love trying new stuff out.
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

thebears73 wrote: Thu Jul 09, 2020 12:45 am
boundupone wrote: Wed Jul 08, 2020 9:22 pm OK, invites sent to the closed beta, if yours isnt in your inbox now let me know and I will resend

Also set up another thread to discuss beta phase -

viewtopic.php?f=2&t=23066

Thanks all
Happy to test for you as well, love trying new stuff out.
pm sent
Try anything once!
hawekeye1234
Explorer At Heart
Explorer At Heart
Posts: 271
Joined: Fri Apr 08, 2016 4:36 pm

Re: [New Release] The Estim Experiment - EOS Tease

Post by hawekeye1234 »

Excited to see the final result, hoping some stereo stim testers with DIY also mange to get in, curious to see/feel the end result, as the 2B converts the signal as many have talked about before, compared to a StereoStim that plays the files unfiltered.

Which makes the expirience diffrent between these two kind of systems.
[New Releases] 2021, find them here
viewtopic.php?f=25&t=24555
electroking
Explorer
Explorer
Posts: 9
Joined: Fri Mar 11, 2016 4:41 pm
Gender: Male
Sexual Orientation: Straight

Re: [New Release] The Estim Experiment - EOS Tease

Post by electroking »

boundupone wrote: Wed Jul 08, 2020 9:22 pm OK, invites sent to the closed beta, if yours isnt in your inbox now let me know and I will resend

Also set up another thread to discuss beta phase -

viewtopic.php?f=2&t=23066

Thanks all
I would be happy to test your creation with a 312b also :-)
boundupone
Explorer At Heart
Explorer At Heart
Posts: 482
Joined: Sat Jun 01, 2013 8:01 pm
Gender: Male
Sexual Orientation: Straight
I am a: Switch

Re: [New Release] The Estim Experiment - EOS Tease

Post by boundupone »

electroking wrote: Fri Jul 10, 2020 10:03 pm
boundupone wrote: Wed Jul 08, 2020 9:22 pm OK, invites sent to the closed beta, if yours isnt in your inbox now let me know and I will resend

Also set up another thread to discuss beta phase -

viewtopic.php?f=2&t=23066

Thanks all
I would be happy to test your creation with a 312b also :-)
Thanks for the interest but have closed off the test for now, but the whole thing should be live in a day or two I hope, so stay tuned
Try anything once!
Xyrexus
Explorer
Explorer
Posts: 16
Joined: Sun Sep 13, 2020 12:50 am

Re: [New Release] The Estim Experiment - EOS Tease

Post by Xyrexus »

This seems quite interesting to me, though I have a 2B, does that work well with this? It's just some of the settings the mistress asks you to do during calibration isn't really a thing. I suppose I should just ignore that and just set it to however much I can take during the calibration loop?

I don't have a tri-phase yet either, but I do have cock loops, and a moaner on the way, so I'll be sure to try this.

I'm curious though, how is the self-bondage portion supposed to work when it's finished? If you're playing the audio from your PC into your estim device, how is the audio to tell alexa to open the lock going to work? Short of having the annoying whine of the e-stim track playing through speakers at the same time.
Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot], mtcantor and 63 guests