コード例 #1
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Threads(Value));
 }
コード例 #2
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.BitStreamFilter(First, Second));
 }
コード例 #3
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Audio(Value, Bitrate));
 }
コード例 #4
0
ファイル: OutputArgument.cs プロジェクト: Crydsch/FFMpegCore
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Output(Value));
 }
コード例 #5
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Speed(Value));
 }
コード例 #6
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Scale(Value.Width, Value.Height));
 }
コード例 #7
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.ForceFormat(Value));
 }
コード例 #8
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Disable(Value));
 }
コード例 #9
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.InputConcat(Value));
 }
コード例 #10
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(string.Join(" ", Value.Select(v => ArgumentStringifier.Input(v))));
 }
コード例 #11
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.FinalizeAtShortestInput(Value));
 }
コード例 #12
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.FrameRate(Value));
 }
コード例 #13
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.IntelVideo(Value));
 }
コード例 #14
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.StartNumber(Value));
 }
コード例 #15
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return(ArgumentStringifier.Duration(Value));
 }
コード例 #16
0
 /// <summary>
 /// String representation of the argument
 /// </summary>
 /// <returns>String representation of the argument</returns>
 public override string GetStringValue()
 {
     return ArgumentStringifier.Size(Value);
 }