Page 1 of 1

JVLC: mediaDescriptor.addOption(String)

Posted: 12 Aug 2009 15:28
by Gawain
how can I add an option like "deinterlace" to my mediaDescriptor?

I read the documentation, but it's still not clear to me:
http://wiki.videolan.org/Documentation: ... Use_of_VLC

here is what I've tried out:

Code: Select all

mediaDescriptor = new MediaDescriptor(jvlc, path); mediaDescriptor.addOption("--filter deinterlace"); mediaDescriptor.addOption("--deinterlace-mode=blend");
can anyone please help me out?

Re: JVLC: mediaDescriptor.addOption(String)

Posted: 28 Sep 2009 14:04
by Gawain
Isn't there anybody who can tell me how to add the "deinterlace"-filter to a video at JVLC? Please!

Re: JVLC: mediaDescriptor.addOption(String)

Posted: 21 Oct 2009 18:30
by mirlinho
mediaDescriptor.addOption(":vout-filter=deinterlace");
mediaDescriptor.addOption(":deinterlace-mode=blend");