Opus radio broadcast problem

Started by v0lt,

v0lt

I'm getting a radio broadcast from this list: https://dir.xiph.org/codecs/Opus
For example: http://secure.live-streams.nl/opus.opus

The BASS_StreamCreateURL function returns zero. And I get the BASS_ERROR_FILEFORM error.
Here's a snippet of my code:
EXECUTE_ASSERT(BASS_SetConfig(BASS_CONFIG_MF_DISABLE, TRUE));

m_stream = BASS_StreamCreateURL(
    LPCSTR(path.c_str()), 0,
    BASS_STREAM_BLOCK | BASS_STREAM_DECODE | BASS_UNICODE | BASS_STREAM_STATUS,
    OnDownloadData, this
);
I tried not using BASS_CONFIG_MF_DISABLE, but it didn't help.

The netradio.exe utility doesn't have this problem.

What could be the reason?