Page 1 of 1

deinterlace and fullscreen in activex

Posted: 19 Mar 2008 11:33
by adia
Hello,

I'm using the ActiveX plugin of 0.8.6d.

I'm configuring a video (player.playlist.add) with the following flags:
:vout-filter=deinterlace :deinterlace-mode=blend :udp-caching=1000 :no-plugins-cache :no-drop-late-frames

Then, after starting the video I'm trying to set it to full screen:
player.video.fullscreen = true;

Although now the fullscreen property is indeed set to true, the display does not changed.

I've seen in an old post that there is some bug in the activex regarding this and it was suggested to use the set_variable command to change the video to full screen, but this command is not supported in the new plugin.

Any other suggestions?

Thanks,
Adi

Re: deinterlace and fullscreen in activex

Posted: 21 Mar 2008 18:40
by revolunet
use

Code: Select all

player.video.toggleFullscreen();
see http://wiki.videolan.org/Documentation: ... d_above.29

Re: deinterlace and fullscreen in activex

Posted: 25 Mar 2008 15:53
by adia
Thanks for the suggestion, but it still doesn't work when deinterlacing is turned on.