Search found 6 matches

Go to advanced search

by DrageFabeldyr
13 Jan 2017 07:58
Forum: Development around libVLC
Topic: auto-reconnect and event filter, qt
Replies: 2
Views: 2700

Re: auto-reconnect and event filter, qt

ok, i've found solution: connect(_player, &VlcMediaPlayer::end, this, &myprogram::reconnect); connect(_player, &VlcMediaPlayer::error, this, &myprogram::reconnect); void myprogram::reconnect() { if (_player->state() == 6 || _player->state() == 7) // don't know if it really needed or ...
by DrageFabeldyr
11 Jan 2017 14:47
Forum: Development around libVLC
Topic: auto-reconnect and event filter, qt
Replies: 2
Views: 2700

Re: auto-reconnect and event filter, qt

or may be someone can tell how to use libvlc_event_manager_t?
by DrageFabeldyr
10 Jan 2017 14:33
Forum: Development around libVLC
Topic: auto-reconnect and event filter, qt
Replies: 2
Views: 2700

auto-reconnect and event filter, qt

Hello everybody, I'm trying to make my qt program using libvlc to resume streaming after source file ended or connection lost. Now i do it this way: check_timer = new QTimer(this); connect(check_timer, SIGNAL(timeout()), this, SLOT(check_state())); check_timer->setInterval(1000); // 1 time per secon...
by DrageFabeldyr
23 Dec 2016 13:37
Forum: Development around libVLC
Topic: Compiling libVLC on Windows 7
Replies: 2
Views: 1847

Re: Compiling libVLC on Windows 7

Ok. I've done what i needed. Here i described my soluion if anybody else need it. Just don't want two write it twice.
by DrageFabeldyr
22 Dec 2016 10:16
Forum: Development around libVLC
Topic: Compiling libVLC on Windows 7
Replies: 2
Views: 1847

Re: Compiling libVLC on Windows 7

ok, according to my understanding of what instruction mentioned above says and this answer solution is: download VLC from here it includes "sdk" folder than put paths into cmake-gui flags LIBVLC_LIBRARY="D:/qtprojects/vlc-2.2.4/sdk/lib/libvlc.lib" LIBVLCCORE_LIBRARY="D:/qtpr...
by DrageFabeldyr
21 Dec 2016 13:42
Forum: Development around libVLC
Topic: Compiling libVLC on Windows 7
Replies: 2
Views: 1847

Compiling libVLC on Windows 7

Hi everybody. I have two cameras and wanna see streaming from them both in my program. For this i need libVLC. I've never worked with RSTP so i've tried this example to understand how it works. It also requires these libraries to work but they are only for the release version. So to write my own pro...

Go to advanced search