It is possible to start a streaming AudioClip not from the beginning ?

For exemple, i got a music in my HDD, i load it into streaming (because i need to), is there a way to start the song from 0:30 for example and not from the beginning, or says “go to 0:30” ?

The documentation clearly states that AudioSource.timeSamples won’t work with streaming clips. You have to load it into memory if you want to be able to use this feature. (I know, I wished this was different too).

EDIT - Was able to get this to work, please see comments.