How to control the starting point of a sound file?

Is there a way through python to control the start “frame” of a sound file?
In others words, is it possible to start a sound file not from the start but at a point that will be defined from a variable inside a script?

Read the API: https://www.blender.org/api/blender_python_api_2_76_9/aud.html#aud.Handle.position
Or you can use the factory “limit” function.

Interesting. This could be useful i guess, but i’m curious, what are you using this for. A sound/speech atlas or something?

I need this to control a car engine sound. Doing this only by changing the pitch of a sound will not give very realistic results.

Many thanks, i will give this a try and post the results here.