Normal
mm1352000 is correct. We can't look inside the internals of BASS.As the log indicates, you are running into a timeout, meaning the stream is not delivered within the default of 5 seconds.I am using the default of 5 seconds.You mentioned, that you would be able to compile your own versioin of MP. If this is true, you can give it a try.in Core\MusicPlayer\BASS\MusicStream.cs insert after line 313, this is the line with the "Bass.BASS_SetConfig":[code]Bass.BASS_SetConfig(BASSConfig.BASS_CONFIG_NET_TIMEOUT, 10000);[/code]This will wait then up to 10 Seconds.If you have troubles i can compile a version for you.
mm1352000 is correct. We can't look inside the internals of BASS.
As the log indicates, you are running into a timeout, meaning the stream is not delivered within the default of 5 seconds.
I am using the default of 5 seconds.
You mentioned, that you would be able to compile your own versioin of MP. If this is true, you can give it a try.
in Core\MusicPlayer\BASS\MusicStream.cs insert after line 313, this is the line with the "Bass.BASS_SetConfig":
[code]Bass.BASS_SetConfig(BASSConfig.BASS_CONFIG_NET_TIMEOUT, 10000);[/code]
This will wait then up to 10 Seconds.
If you have troubles i can compile a version for you.