VLC De-interlacing mode
Posted: 21 Sep 2010 14:31
Hi,
I am developing a Window application in C# to play an IPTV stream using VLC player.
to do this I have added the AxVlcPlugin2Control to the main form.
Now I want to change the Deinterlace mode to Yadif (2x) from the code but it's not working (The Quality of the picture still the same). Folowing is the code that I am using:
Note: If I play the same IPTV stream from the VLC media player and i change the deinterlace filter to Yadif (2x) (right click->video->deinterlace->Yadif (2x)), the picture quality improves
Thanks for your helps.
I am developing a Window application in C# to play an IPTV stream using VLC player.
to do this I have added the AxVlcPlugin2Control to the main form.
Now I want to change the Deinterlace mode to Yadif (2x) from the code but it's not working (The Quality of the picture still the same). Folowing is the code that I am using:
Code: Select all
string[] VlcOption = { ":vout-filter=deinterlace", ":deinterlace-mode=Yadif2x" };
int i = axVLCPlugin21.playlist.add(txt_url.Text, "asdasdasd", VlcOption);
axVLCPlugin21.playlist.playItem(i);
Thanks for your helps.