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.