Click here to Skip to main content
15,905,683 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I know how to run mplayer in c# .
I want mplayer plays video from specific time and stop at specific time.
Posted
Updated 8-Aug-14 10:05am
v2

1 solution

is solved here : Simple Mplayer Front End in C# by "Umair Amin"
add "-ss 10 -endpos 56" to args variable
In example change this line
args += " -vo direct3d, -ao dsound -wid ";
to
args += " -vo direct3d, -ao dsound -ss=10 --endpos=56 -wid ";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900