Search found 513 matches

Go to advanced search

by RSATom
30 Oct 2018 09:16
Forum: Web and scripting
Topic: Plugin stopped working?
Replies: 17
Views: 8784

Re: Plugin stopped working?

Same problem here. One solution still exists, but it's not absolute. You could try switch to WebRTC, and use something like Janus Gateway (now Janus Server) to restream video from ipcams. Janus Gateway is good choice since it allow restream video without transcoding. I've did some proof-of-concept,...
by RSATom
04 Jun 2016 17:58
Forum: Development around libVLC
Topic: Nubie - How to use VLC in Visual Studio C++
Replies: 3
Views: 910

Re: Nubie - How to use VLC in Visual Studio C++

I recommend you use libvlc_media_player_set_hwnd instead - it will be much simple than with libvlc_video_set_callbacks
by RSATom
04 Jun 2016 17:55
Forum: Web and scripting
Topic: NodeJS & VLC?
Replies: 1
Views: 5303

Re: NodeJS & VLC?

by RSATom
25 Feb 2016 17:45
Forum: Development around libVLC
Topic: Getting error, but still can play video.
Replies: 6
Views: 701

Re: Getting error, but still can play video.

and this libvlc is just very old version
by RSATom
25 Feb 2016 17:45
Forum: Development around libVLC
Topic: Getting error, but still can play video.
Replies: 6
Views: 701

Re: Getting error, but still can play video.

no, it will not help. I mean, you have some software based on libvlc which copy libvlc to windows system folders, or add itself to PATH env variable.
by RSATom
25 Feb 2016 17:13
Forum: Development around libVLC
Topic: Getting error, but still can play video.
Replies: 6
Views: 701

Re: Getting error, but still can play video.

it's very possible you have old libvlc in your PATH, or in windows/system32 or something similar
by RSATom
29 Jan 2016 10:24
Forum: Web and scripting
Topic: VLC and Unity
Replies: 2
Views: 2287

Re: VLC and Unity

read some Unity docs - it seems it's pretty possible. And I can say more, if such thing will have pretty big users auditory, I even can do it...
by RSATom
29 Jan 2016 10:16
Forum: Web and scripting
Topic: VLC and Unity
Replies: 2
Views: 2287

Re: VLC and Unity

if Unity has ability load native plugins (I just don't know if it can) - it's possible.
by RSATom
22 Dec 2015 13:15
Forum: Development around libVLC
Topic: How to detect double click on video ?
Replies: 3
Views: 1141

Re: How to detect double click on video ?

You could subclass video output window or set mouse hook(if you are on Windows) to intercept mouse events.

That's code where mouse hooks was used for same task: https://github.com/RSATom/fbvlc/blob/ma ... n.cpp#L202

Another way could be use Qt QML and my QmlVlc library
by RSATom
30 Nov 2015 11:05
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2729

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

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

You could check with http://www.dependencywalker.com/ (over corresponding video output plugin), maybe you've deleted some mandatory .dll. And try run with "-vvv" (+ maybe https://technet.microsoft.com/en-us/sys ... gview.aspx), maybe you will see something in logs.
by RSATom
30 Nov 2015 09:25
Forum: Development around libVLC
Topic: how to select "WinGdi" as Video output module in libvlc ?
Replies: 11
Views: 2729

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

try delete video output plugins files not suitable for you.
by RSATom
26 Nov 2015 11:58
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1084

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

No, I don't. But maybe the easiest way for you could be just delete all video_output plugins from your libvlc package except direct3d. Then you could be sure it will be used.
by RSATom
26 Nov 2015 11:42
Forum: Development around libVLC
Topic: how to control video output type with the vlc sdk in my c++ codes
Replies: 7
Views: 1084

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

You could get sources of existing video output plugins and reuse it. But you have no access to them via libvlc api as I know.
by RSATom
24 Sep 2015 12:05
Forum: Development around libVLC
Topic: Rendering video in two separate windows.
Replies: 9
Views: 1524

Re: Rendering video in two separate windows.

I get the two windows now. But how do I set their parents individually?
You could use "vmem" module and decode video frames to memory, after that you could render it anywhere you like.
by RSATom
21 Jul 2015 04:39
Forum: Web and scripting
Topic: No Hardware acceleration with vlc web plugin
Replies: 8
Views: 2817

Re: No Hardware acceleration with vlc web plugin

Unfortunately Vlc Web Plugins doesn't have any option to enable hardware acceleration. So, you have following options: 1) modify plugin sources to add this option; 2) use WebChimera with <param name="hw-accel" value="true" /> (and maybe in FBVLC compatibility mode, if you need it...
by RSATom
16 Jul 2015 11:47
Forum: Web and scripting
Topic: No Hardware acceleration with vlc web plugin
Replies: 8
Views: 2817

Re: No Hardware acceleration with vlc web plugin

@jb, somebody works on PPAPI Vlc Plugin?
by RSATom
10 Jul 2015 09:05
Forum: Web and scripting
Topic: No Hardware acceleration with vlc web plugin
Replies: 8
Views: 2817

Re: No Hardware acceleration with vlc web plugin

Are you sure want use NPAPI plugin even knowing NPAPI will be completely removed from Chrome at September (i.e. less than two months)?
by RSATom
10 Jun 2015 12:47
Forum: Development around libVLC
Topic: Why libvlc_MediaListPlayerNextItemSet event is triggered twice when list contains youtube videos?
Replies: 5
Views: 610

Re: Why libvlc_MediaListPlayerNextItemSet event is triggered twice when list contains youtube videos?

In the same situation I've did my own loop implementation. https://github.com/RSATom/ya-libvlc-wrapper/blob/master/vlc_player.cpp#L414 https://github.com/RSATom/ya-libvlc-wrapper/blob/master/vlc_player.cpp#L377 in client code next() is attached to libvlc_MediaPlayerEndReached and libvlc_MediaPlayerE...

Go to advanced search