Page 1 of 1

Problem in VB program with adjust filter (VLC v. 0.98)

Posted: 17 Dec 2008 17:13
by Cooldream
Hello,

With 0.86 version, I used adjust for adjust video image (contrast, hue...) but with 0.98 I have the sound but only a black screen.

My code is :

Code: Select all

VLCoptions = New String() {":no-overlay", ":vout-filter=adjust:deinterlace", ":deinterlace-mode=bob", ":drop-late-frames", ":no-video-title-show"} Numlist = VLC.playlist.add(Namefile, "VIDEO", VLCoptions) VLC.playlist.playItem(Numlist)
Without "adjust", it works fine :

Code: Select all

VLCoptions = New String() {":no-overlay", ":vout-filter=deinterlace", ":deinterlace-mode=bob", ":drop-late-frames", ":no-video-title-show"}
Any idea ?

Thanks...

Re: Problem in VB program with adjust filter (VLC v. 0.98)

Posted: 17 Dec 2008 17:18
by revolunet
my debug tells me "main video output no video filter module matched "adjust""

Re: Problem in VB program with adjust filter (VLC v. 0.98)

Posted: 17 Dec 2008 18:13
by Cooldream
OK, I found...
With 0.98 version, the code is with "video-filter", for example :

Code: Select all

VLCoptions = New String() {":swscale-mode=2", ":no-brightness-threshold", ":no-overlay", ":gamma=1", ":hue=0", ":saturation=1", ":contrast=1", ":brightness=1", ":video-filter=adjust:deinterlace:swscale", ":deinterlace-mode=bob", ":drop-late-frames", ":no-video-title-show"}
Thanks...