News:

SMF - Just Installed!

Main Menu

Recent posts

#51
Hello,

With regards to the first issue, you should create a custom stream mixer as described inside the related tutorial
https://www.multimediasoft.com/adjstudnet/help/adjstudnet_000075.htm
and attach both players to the mixer itself.

With regards to the second issue, K-Lite is needed if you want to play video files because it installs most of the needed DirectShow codecs used to decode the majority of video formats: its not needed for playing audio files only.

Hope this helps

Kind regards

Severino Delaurenti
MultiMedia Soft
#52
Hello,

1. First Issue

I have created sound system with two players.

First Player plays Audio or Video file having its own volume control
Second player is used for microphone input having its own volume control.

Is there any way to combine the volumes of both of these players to form a single stream and control
the combined input by independent volume control (Master Volume). It is just like a analog mixer.

2. Second issue

Is it mandatory to install K-lite codec on system for successful working of AudioDjStudio ?
Will it work without K-lite codec also?

Thanks and Regards,

Ravindra.
#53
Hello,

the multimedia engine AdjMmsEng embeds other dlls that are instanced dynamically, when needed: if one of these dlls is targeted in error by the antivirus, due to a "false positive", it will be immediately deleted and/or blocked so the multimedia engine will fail to load it, resulting in the mentioned error message box being displayed.

Kind Regards

Severino Delaurenti
MultiMedia Soft



#54
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

#55
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
#56
Hello Severino,

I am attaching the Project for your reference.

Thanks And Regards,
Not a valid attachment ID.
Ravindra.
#57
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

#58
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.

#59
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
#60
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