If I open a second instance of VLC and set the URL to rtp://192.168.1.3:1234 it works fine.
Yet if I try to do the same thing in my code, replacing the line I hade before
Code: Select all
m_vlcMedia = libvlc_media_new( m_vlcInstance, "C:/a.avi", &m_ex );
Code: Select all
m_vlcMedia = libvlc_media_new( m_vlcInstance, "rtp://192.168.1.3:1234", &m_ex );
I have copied the all dll and plugins folder where my exe is but nothing...
Yet my code works fine from file, and the video stream can be received properly from another VLC instance... can you help me?