mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 01:55:45 +00:00
10 lines
No EOL
257 B
C#
10 lines
No EOL
257 B
C#
namespace FFMpegCore.Arguments
|
|
{
|
|
/// <summary>
|
|
/// Faststart argument - for moving moov atom to the start of file
|
|
/// </summary>
|
|
public class FaststartArgument : IArgument
|
|
{
|
|
public string Text => "-movflags faststart";
|
|
}
|
|
} |