Page 1 of 1

Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 03 Apr 2009 23:09
by Yaffle
Hello, I use vlc 0.8.6 - 0.9.8 and deinterlace works fine, but with vlc 0.9.9 plugin i see interlaced video.

My javascript code:

Code: Select all

var n = player.playlist.add('http://10.0.0.1:10001',' ',' :vout-filter=deinterlace :deinterlace-mode=x '); player.playlist.playItem(n);
Thank you.

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 07 Apr 2009 18:25
by thannoy
Maybe the same for upcoming 1.0.0, a workmate said to me.
Need to recheck it and maybe fill a trac ticket.

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 24 Apr 2009 11:05
by thannoy
I think it is related to http://git.videolan.org/?p=vlc.git;a=co ... 1398e501a1.

If I use ":vout-filter=deinterlace :deinterlace-mode", I get "option 'foo' ignored for security reasons" for both of them in logs.
If I replace ':' by '--' to make them global, I have not those error logs but still interlaced.

-- having a look at this issue..

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 26 Apr 2009 12:29
by Anatoly_B
Deinterlace work good, but it isn't accessible in web page in v0.9.9.
viewtopic.php?f=16&t=58451

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 11 Aug 2009 09:15
by AndreJ
I'm using the latest v1.0.1 PLUGIN and I still have the problem that I can't set the deinterlace_mode=bob on.

I really need this feature in my project. Can anybody please help me with any suggestion?

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 11 Aug 2009 15:55
by thannoy
It shoult appear in future VLC 1.1.0, which is under development with absolutely no support, and unstable.

You can try it using one of the nightlies (VLC devel compiled by a robot every nihgts) at http://nightlies.videolan.org (1.1.0 is named "trunk" or "master"). You will need to read the Documentation:WebPlugin#Video_object to test its deinterlace JavaScript call.
You should never use a nightly if you care about stability or regressions.

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 12 Aug 2009 17:31
by AndreJ
Thank you very much for the info. I'll try the nightlies just to see if I can get it working.

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 14 Aug 2009 13:06
by AndreJ
The C# software I use calls the dll library functions to control the plugin.

For example to trigger Fullscreen the following call is done:
[DllImport("libvlc")]
internal static extern void libvlc_toggle_fullscreen(IntPtr p_media_player, ref libvlc_exception_t p_exception);

bool ret = InteropMethods.libvlc_get_fullscreen( ..... );

How do I set the deinterlacing using the dll in the latest code (nighlies)?

Here is the specific function I would like to call: vlc.video.deinterlaceEnable("bob");

Can anybody please help?

Re: Deinterlace option doesn't work with VLC 0.9.9 plugin

Posted: 15 Aug 2009 14:08
by AndreJ
I've downloaded the nightly build of ver 1.1.0 of the 14/08/2009 and I see the function vlc.video.deinterlaceEnable("bob"); is available.

The problem is that the causes an application error if I call it. The plugin also starts in its own window and not on the targeted window.

Does anybody have any idea when the function vlc.video.deinterlaceEnable("bob"); will be working and why is the video starting in its own window?