Skip to content

Commit

Permalink
Issue #24 - webm support
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekmotyl committed Dec 5, 2020
1 parent 059aa75 commit 5c35c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SimpleVideoCutter/VideoCutterSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class VideoCutterSettings
public string OutputDirectory { get; set; } = "{UserVideos}";
public string OutputFilePattern { get; set; } = "{FileDate}-{FileNameWithoutExtension}.{Timestamp}{FileExtension}";
public string FFmpegPath { get; set; } = null;
public string[] VideoFilesExtensions { get; set; } = new string[] { ".mov", ".avi", ".mp4", ".wmv", ".rm", ".mpg", ".mkv" };
public string[] VideoFilesExtensions { get; set; } = new string[] { ".mov", ".avi", ".mp4", ".wmv", ".rm", ".mpg", ".mkv", ".webm" };
public int HoverPreviewSize { get; set; } = 300;

public bool Mute { get; set; } = false;
Expand Down

0 comments on commit 5c35c70

Please sign in to comment.