Whats the difference in between the two that you mentioned?
I want to save the stream to HD as this does:
RecordingEncoderHandle = BassEnc_Opus.BASS_Encode_OPUS_StartFile(MainModule.mixer, Nothing, BASSEncode.BASS_ENCODE_AUTOFREE, Path & Filename)
and I want to broadcast it to other users over www, just as
MainModule.StreamEncoderHandle = BassEnc_Mp3.BASS_Encode_MP3_Start(MainModule.mixer, Nothing, BASSEncode.BASS_ENCODE_LIMIT Or BASSEncode.BASS_ENCODE_AUTOFREE, Nothing, Nothing)
Portnumber = BassEnc.BASS_Encode_ServerInit(MainModule.StreamEncoderHandle, CStr(LayerViewModel.SettingsViewModel.Portnumber), 64000, 64000, BASSEncodeServer.BASS_ENCODE_SERVER_META, EnocdeClientProc, IntPtr.Zero)
does
Is this even doable?