Irmen de Jong
Irmen de Jong
Actually, streams by itself cannot be stopped/paused/restarted (unless you program your own callback generator), but the Device already has start() and stop() methods that work. Can you elaborate a bit...
I'm not entirely sure but it could be that the decoder from the underlying miniaudio library doesn't support seeking
What version of the library did you use? There has been a fix in the underlying miniaudio library regarding seeking. You need at least 0.10.19 for that fix so please...
Thanks @mackron for the additional info! I never considered seeking after playback started to be frank. So it might actually be a limitation of my python wrapper. Still, the error...
@pisarenko-net have you ever been able to resolve your issue ?
Closing this, as it seems stale. Just checked as well - adding seek_frame=200000 to the stream_file in demo1.py works just fine.
I don't know :) It's been quite a while since I did something with autoproxied classes. Will have to dig into these specifics again to be able to give a...
@eudoxos can you provide a snippet of code that demonstrates the problem?
Ok basically you need to create a separate proxy object *per thread* in your client. See https://pyro5.readthedocs.io/en/latest/clientcode.html#proxy-sharing-between-threads The easiest pattern probably is to defer creating the actual proxy in the...
It think this has become more relevant again now that python 2 is officially no longer supported, and people should have moved to Python 3.5 or newer