Page 1 of 1

JVLC and Filters

Posted: 12 Aug 2008 20:02
by jopenman
I am trying to use the filter options with JVLC. I am currently loading a stream from a URL (web camera) and trying to display some information about the camera. I know the filter must be working in some form or fashion because when I first display the video it displays the IP address on the bottom of the screen for a few seconds. This is what I have so far, can anyone see anything obvious I am doing wrong?

Code: Select all

String[] options = new String[1]; options[0] = "--sub-filter=marq{marq-marquee=$t ($P%%),color=16776960}"; playlist.play( lastplaylistid, options );
Ive also tried this format:

Code: Select all

options[0] = "--sub-filter=marq --marq-marquee='Obvious Watermark' --marq-position=0 --marq-size=50 --marq-opacity=25 --marq-color=32768";
Any thoughts? Thanks!

Re: JVLC and Filters

Posted: 14 Aug 2008 07:24
by saurabh
Hi..jopenman

Could you tell me more about these filters...
Like wht are th options the we can set... ?
Or is ther anything like documentation tht I can get to read on...
To get more options in my application..
Thanks in advance...

Re: JVLC and Filters

Posted: 14 Aug 2008 14:37
by jopenman
Saurabh,
You can find alot of information out by looking at the documentation webpage for vlc.

http://wiki.videolan.org/Documentation

Re: JVLC and Filters

Posted: 19 Aug 2008 09:04
by saurabh
Ok..
Thanks..
And one more thing I am working on java using JVLC making my own application...
So all th things tht are applied to vlc player(development related) like filters and all tht...
Is it all same while working on java too... ?
Plus I am getting problem while designing my own seeker in my application..
I am using java's GUI component like slider to develop seeker for my video...
Could u also tell me how to develop such seeker..
I dnt kno much about c/c++...
So I couldnt get any help from vlc's source code...
I am developing it using java using jvlc libraries...
Please help me on that...
Thanks....