Search found 12 matches

Go to advanced search

by kentontsui1985
14 Dec 2015 10:52
Forum: Development around libVLC
Topic: How to play rtsp stream repeatedly
Replies: 1
Views: 828

How to play rtsp stream repeatedly

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...
by kentontsui1985
30 Nov 2015 16:17
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

Re: how to select "WinGdi" as Video output module in libvlc ?

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...
by kentontsui1985
30 Nov 2015 11:37
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

Re: how to select "WinGdi" as Video output module in libvlc ?

btw, what video dimensions do you need to output? something like 4k or full hd and below?
I use 4x4 alignment, running on a pc with 4 graphic cards. so the screen wall resolution is 7680 x 4320.
by kentontsui1985
30 Nov 2015 11:34
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

Re: how to select "WinGdi" as Video output module in libvlc ?

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...
by kentontsui1985
30 Nov 2015 10:35
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

Re: how to select "WinGdi" as Video output module in libvlc ?

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...
by kentontsui1985
30 Nov 2015 09:18
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

Re: how to select "WinGdi" as Video output module in libvlc ?

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 ...
by kentontsui1985
30 Nov 2015 07:52
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2896

how to select "WinGdi" as Video output module in libvlc ?

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.
by kentontsui1985
26 Nov 2015 11:55
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1202

Re: how to control video output type with the vlc sdk in my c++ codes

Do you know change which part of codes can choose "windows Gdi output", i compile one source codes and the default is "Direct3D Output". thanks
by kentontsui1985
26 Nov 2015 11:12
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1202

Re: how to control video output type with the vlc sdk in my c++ codes

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...
by kentontsui1985
26 Nov 2015 03:13
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1202

Re: how to control video output type with the vlc sdk in my c++ codes

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...
by kentontsui1985
25 Nov 2015 11:10
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1202

how to control video output type with the vlc sdk in my c++ codes

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!

Go to advanced search