When I play the video in VLC, it appeared three lines of text.
Line 1: Title
Line 2: configured as shown below
Line 3: Subtitles
How to write code for the 2nd line with language vb.net
Best Regards!
Thank youAdd multiple marquee filters.
Code: Select all
marq{marquee=Text1,x=10,y=10}:marq{marquee=Text2,x=500,y=500}:marq{marquee=Text3,position=10}
Code: Select all
m_player.Marquee.Enabled = false;
m_player.Marquee.Text = "text 1";
m_player.Marquee.Timeout = 2000;
m_player.Marquee.Y = 10;
m_player.Marquee.X = 100;
m_player.Marquee.Text = "text 2";
m_player.Marquee.Timeout = 2000;
m_player.Marquee.Y = 40;
m_player.Marquee.X = 100;
m_player.Marquee.Text = "text 3";
m_player.Marquee.Timeout = 2000;
m_player.Marquee.Y = 80;
m_player.Marquee.X = 100;
m_player.Marquee.Color = VlcColor.Blue;
m_player.Marquee.Enabled = true;
Return to “Development around libVLC”
Users browsing this forum: No registered users and 29 guests