I use below command line to build a vlc rtsp stream server, and use vlc sdk to play it, but the player will freeze at the last frame, how to make the player play the rtsp netstream repeatedly without freezing ? thanks in advance. vlc -vvv test.mp4 --sout-keep --sout "#transcode{vcodec=h264,vb=0...
That won't have any effect. hi, below codes works, and then it play video with wingdi output module. I test on screen wall resolution 7680 x 4032, the Direct3D not support so big resolution and will pause every several seconds while wingdi play fluently. :) const char *parameter[] = {"--vout&q...
Hi, thanks everybody who have helped me I resolved it by below way. const char *parameter[] = {"--vout", "wingdi"}; instance = libvlc_new (sizeof(parameter) / sizeof(parameter[0]), parameter); If i remove all other dlls except wingdi, it still not work, that means, even remove al...
According to my test on 16 screens with vlc player, the win gdi can play normally while other video output modes will pause for every several seconds. If i choose "windows GDI video output" it will work, if i only keep the wingdi mode and remove the other output module dlls, it will not wo...
LibVLC selects the most appropriate video output automatically. You can't change it. If i play a video on a pc with 16 screens, it will be fluent with "win gdi",and will be lagging with "auto output", if use command line can also adds "--vout wingdi", do you have some ...
Hi all,
To VLC player we can select video output module in the option tools->Preferences->Video->Output, how can i choose "WinGdi" with VLC sdk? what is the easiest way?
Thanks in advance.
you could look this: https://github.com/RSATom/ya-libvlc-wrapper/blob/master/vlc_vmem.h https://github.com/RSATom/ya-libvlc-wrapper/blob/master/vlc_vmem.cpp thanks for your information. I notice there is wingdi, direct3d, directdraw module under video_output folder of plugins, is there a exposed ap...
No. If you want custom rendering, use the custom rendering callbacks. thanks you for your reply, Is it related "libvlc_video_set_callbacks (libvlc_media_player_t *mp, libvlc_video_lock_cb lock, libvlc_video_unlock_cb unlock, libvlc_video_display_cb display,....." ? i am not sure which fun...
I write a simple test case with libvlc to play a video, now i want to select the "windows GDI video output" when play media, is there some function like "libvlc_media_player_set_ ....." which can control the video output?
Thanks!