gbishop / outfox

Automatically exported from code.google.com/p/outfox
Other
1 stars 0 forks source link

stream() loop doesn't work #40

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
1. outfox.audio.setProperty('loop', true)
2. outfox.audio.stream(url);
3. Wait for stream to end.
4. Loop doesn't happen. It sounds like outfox loops on the first few
samples repeatedly, but not the whole stream.

Original issue reported on code.google.com by pare...@gmail.com on 19 Apr 2009 at 5:50

GoogleCodeExporter commented 9 years ago

Original comment by c...@unc.edu on 2 May 2009 at 2:33

GoogleCodeExporter commented 9 years ago
Looks like an FMOD bug. Take charge of looping for streams in the Python code by
playing the stream again when it finishes without sending the done callback.

Original comment by c...@unc.edu on 2 May 2009 at 3:50

GoogleCodeExporter commented 9 years ago
On second thought, that sends the message that streams will loop seamlessly 
which
isn't the case. Mark looping on streams as unsupported until FMOD problem 
resolved.
Apps can track stream finished and start it again if they want loop-like 
behavior or
use play() to get true loops with the cost of downloading the file completely.

Original comment by c...@unc.edu on 16 May 2009 at 2:32