mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 00:24:14 +01:00
Fix TimeSpanExtensions
This commit is contained in:
parent
54e216d3e0
commit
7ebf948f93
1 changed files with 1 additions and 1 deletions
|
@ -10,6 +10,6 @@ public static string ToLongString(this TimeSpan timeSpan)
|
|||
hours += timeSpan.Days * 24;
|
||||
}
|
||||
|
||||
return $"-ss {hours:00}:{timeSpan.Minutes:00}:{timeSpan.Seconds:00}.{timeSpan.Milliseconds:000}";
|
||||
return $"{hours:00}:{timeSpan.Minutes:00}:{timeSpan.Seconds:00}.{timeSpan.Milliseconds:000}";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue