mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-14 02:04:14 +01:00
c3b5cd997e
Former-commit-id: 72366d573a
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";
|
|
}
|
|
} |