Issues with stroker settings.

The penis isn’t long enough, so it slips out of the stroker during video sync. What should I do? Can I adjust the stroke range / motion amplitude?

ultra or vacuglide is left out

You have to manually gently but firmly push it down from the rear of the case so the entrance is closer to the base once the unit is ready and paired and all that.

There are short penis modes within the library. Recommend you to replace the first couple of modes which relate to the FULL STROKE with the shorter penis stroking modes which do not reach the max stroke length. Please go to autoblowme.com and learn how to use the library function.

I think OP is referring to the “Video Sync” functionality, not the library functions.

This should be doable if you have a local video with funscript.

If I understand correctly, position 0 is the top and position 100 is the base. So something like this will scale the range down to 70% (i.e. from 30 to 100 only):

#!/usr/bin/env python3

import json

json_file = 'test.funscript'

scale_factor = 0.7

with open(json_file) as json_data:
    data = json.load(json_data)

for i in data['actions']:
    i['pos'] = round(100 * (1 - scale_factor) + i['pos'] * scale_factor)

print(json.dumps(data))

However, I don’t think currently the Video Sync functionality lets you download the funscript for customizations. Would Autoblow be interested in implementing something similar on the server side?

Hello

For Vacuglide the stroking length is a mechanical adjustment + your valve settings.

For Autoblow Ultra currently there is no way to adjust the stroke length while in video sync. @mbtwo had a good suggestion, we are going to look into this.