News:

SMF - Just Installed!

Main Menu

Recent posts

#81
Hi,

I got a brand new computer and made sure no other your component is running.
Problems occur if antivirus software (Windows 10 Microsoft Defender) is turned on, but sometimes the error will not appear after executing a few times.

If antivirus is turned off, it executes normally without any errors no matter how many times.

I really don't understand what this has to do with antivirus software.

Kind Regards

Terry

#82
Hello,

the issue should be fixed inside the latest build 14.4 of the multimedia engine; you can get the latest build of the multimedia engine from the link below:
https://www.multimediasoft.com/bins/AdjMmsEng14.zip
and you can use it to replace existing instances on your PC under the following folders:
* C:\Program Files\MultiMedia Soft\Audio DJ Studio for .NET\Redist
* If your machine has a x86 version of Windows
    - C:\Windows\System32
* If your machine has a x64 version of Windows
    - C:\Windows\SysWOW64

The x64 version is available as well on the link below:
https://www.multimediasoft.com/bins/AdjMmsEng14_64.zip
and you can use it to replace existing instances on your PC under the following folders:
* C:\Program Files\MultiMedia Soft\Audio DJ Studio for .NET\Redist
* If your machine has a x64 version of Windows
    - C:\Windows\System32

Kind regards

Severino Delaurenti
MultiMedia Soft
#83
Hello Severino,

I am attaching the Project for your reference.

Thanks And Regards,
Not a valid attachment ID.
Ravindra.
#84
Hello,

could you be so kind to attach the modified AsioSpeakersManager project? In this way we could test your code directly.

Kind regards

Severino Delaurenti
MultiMedia Soft

#85
Hello Severino,

Thanks a lot for your guidance so far......

As per your suggestion i checked your doubt, but i have applied the equalizer to my second player correctly.

Actually i have given microphone input this channel. I am getting good sound and rest of the things like volume / Reverb are working fine.

In fact i modified the sample project AsioSpeakersManager in your VB.NET directory and applied the equalizer but no success.

Can you further investigate and suggest the right code to be written.

Thanks and Regards,

Ravindra.

#86
Hello,

the code you are using doesn't seem to be wrong so the issue could be related to some issue with your PC: as mentioned before, it would be important to know if an antivirus is running and if the issue happens when the antivirus is disabled and, as a second test, to be sure that no other application that may use our component is running.

Kind Regards

Severino Delaurenti
MultiMedia Soft
#87
Hello,

Yes, I modified the InternetStreams sample as below:

Sub Form1_Load
           ' init the control
            m_audioAPI.InitSoundSystem(4, 0, 0, 0, 0)


Sub PlayerCallback
      Case enumPlayerEvents.EV_STREAM_LOADED
                    'textBoxTags.Text = ""
                    'If nData1 = CInt(Fix(enumEventLoadStreamResults.STREAM_LOAD_OK)) Then
                    '    buttonPause.Enabled = True
                    '    buttonStop.Enabled = True
                    '    trackBarVolume.Enabled = True

                    '    m_audioAPI.PlaySound(0)
                    '    buttonPause.Text = "Pause"
                    'Else
                    '    MessageBox.Show("Invalid URL or stream currently not available: please, retry later")
                    'End If

                    'Stop playing streaming for now.


Private Sub radioButton80sBB_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles radioButton80sBB.CheckedChanged
     If radioButton80sBB.Checked Then
        m_audioAPI.LoadInternetStream(0, "http://www.multimediasoft.com/bins/80s.pls")
     End If
     m_audioAPI.LoadInternetStream(1, "http://www.multimediasoft.com/bins/70s.pls")
End Sub

Error occurs when radio "radioButton80sBB" button is clicked.

Terry

#88
Hello,

can you replicate the same error with the InternetStreams sample provided by our setup package?

Accordingly to the Windows SDK error 32 means "ERROR_SHARING_VIOLATION": may be that you are running more applications referring to different versions of the multimedia engine AdjMmsEng64.dll?

As a side note, does your PC has some kind of antivirus installed? In these cases it's likely that a false positive was raised and that the module's loading was blocked.

Kind Regards

Severino Delaurenti
MultiMedia Soft


#89
Hello,

1. the equalizer should not be applied to the input channel but to the player attached to the input channel through the ASIO.AttachInputChannelToPlayer method: may be that you are not using the correct value for the nPlayerIndex parameter when applying the equalizer?

2- Unfortunately the component doesn't have access to ASIO settings: it can only launch the ASIO control panel which contains the settings.

Kind regards

Severino Delaurenti
MultiMedia Soft

#90
Hi,

I continuously load Internet stream radio URL via 'LoadInternetStream' like                 m_audioAPI.LoadInternetStream(0, "http://www.multimediasoft.com/bins/80s.pls")           
m_audioAPI.LoadInternetStream(1, "http://www.multimediasoft.com/bins/70s.pls").

The following error message will appear "Internal error, cannot load engine Number 16 due to error 32"

The following is the execution log, the value in brackets is nPlayerIndex

12:35:41.8594|[PlayerCallback]-(0)-[EV_STREAM_CONNECTING          ]
12:35:41.8665|[PlayerCallback]-(1)-[EV_STREAM_CONNECTING          ]
12:35:43.3063|[PlayerCallback]-(1)-[EV_DOWNLOAD_BUFFERING         ] BUFFERING...
12:35:43.3226|[PlayerCallback]-(1)-[EV_STREAM_LOADED              ] http://www.multimediasoft.com/bins/70s.pls
12:35:43.3308|[PlayerCallback]-(1)-[EV_SOUND_PLAYING              ]

You can see that Player 0 is stuck at CONNECTING.

API Version is 11.2.0.0.

Thank You.