Waslikethem
New member
- Joined
- Dec 22, 2018
- Messages
- 3
- Programming Experience
- Beginner
Hello Guys! I need help Playing Videos one after another in order, in a way the first video will be played once, while the other after him will run in loops.
Example:
private void button1_Click(object sender, EventArgs e)
{
videoPlayer.URL = "D:/NP/Videos/First.wmv"; // I want that, this Video will play untill it ends (1 time)
videoPlayer.URL = "D:/NP/Videos/Second.wmv"; // Then, I want this Video will playing in a Loop
}
I've tried using: delay func / thread.sleep func / timer func
NON OF THEM HELPED ME REACH MY GOAL.
It must be simple...but i don't have any idea to how implement it.
I have a direction of maybe i need to create a video player with other functions that can help me reaching my goal...i don't know any..tired using google search without help.
thanks in advance
Example:
private void button1_Click(object sender, EventArgs e)
{
videoPlayer.URL = "D:/NP/Videos/First.wmv"; // I want that, this Video will play untill it ends (1 time)
videoPlayer.URL = "D:/NP/Videos/Second.wmv"; // Then, I want this Video will playing in a Loop
}
I've tried using: delay func / thread.sleep func / timer func
NON OF THEM HELPED ME REACH MY GOAL.
It must be simple...but i don't have any idea to how implement it.
I have a direction of maybe i need to create a video player with other functions that can help me reaching my goal...i don't know any..tired using google search without help.
thanks in advance