mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 10:05:44 +00:00
31 lines
711 B
C#
31 lines
711 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FFMpegCore.FFMPEG.Argument
|
|
{
|
|
/// <summary>
|
|
/// Represents seek parameter
|
|
/// </summary>
|
|
public class SeekArgument : Argument<TimeSpan?>
|
|
{
|
|
public SeekArgument()
|
|
{
|
|
}
|
|
|
|
public SeekArgument(TimeSpan? value) : base(value)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// String representation of the argument
|
|
/// </summary>
|
|
/// <returns>String representation of the argument</returns>
|
|
public override string GetStringValue()
|
|
{
|
|
return ArgumentStringifier.Seek(Value);
|
|
}
|
|
}
|
|
}
|