Skip to content

Commit

Permalink
Fix TimeSpanExtensions
Browse files Browse the repository at this point in the history
  • Loading branch information
rosenbjerg committed Feb 21, 2023
1 parent 54e216d commit 7ebf948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FFMpegCore/Extend/TimeSpanExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
}
}

0 comments on commit 7ebf948

Please sign in to comment.