Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hkalbertl committed Oct 6, 2024
1 parent a65c057 commit 47062a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ internal class Options
[Option('s', "video-codec-preset", HelpText = "The video codec preset to be used for output files. It will affect the output quality and not all video codec supported.")]
public string VideoCodecPreset { get; set; }

[Option('i', "ignore-duration", Default = 1, HelpText = "Ignore clips that having duration (in seconds) lesser than specified value.")]
[Option('i', "ignore-duration", Default = 1, HelpText = "Ignore clips that having duration (in seconds) lesser than specified value. It should help to skip corrupted clips.")]
public int IgnoreDuration { get; set; }

[Option('f', "camera-filter", HelpText = "The camera name regex filter. Such as -f \"^Gar\" will match Garden and Garage clips.")]
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,20 @@ BlinkClipsMerger is written in pure C# so it should work on common modern platfo
-c, --video-codec (Default: libx265) The video codec for merged output files.
-s, --video-codec-preset The video codec preset to be used for output files. It will affect the
output quality and not all video codec supported.
-s, --video-codec-preset The video codec preset to be used for output files. It will affect
the output quality and not all video codec supported.
-i, --ignore-duration (Default: 1) Ignore clips that having duration (in seconds) lesser than
specified value. It should help to skip corrupted clips.
-i, --ignore-duration (Default: 1) Ignore clips that having duration (in seconds) lesser
than specified value. It should help to skip corrupted clips.
-f, --camera-filter The camera name regex filter. Such as -f "^Gar" will match
Garden and Garage clips.
--start-date Filter out the clips captured before this start date. The date should be
in yyyy-MM-dd format.
--start-date Filter out the clips captured before this start date. The date should
be in yyyy-MM-dd format.
--end-date Filter out the clips captured after this end date. The date should be in
yyyy-MM-dd format.
--end-date Filter out the clips captured after this end date. The date should be
in yyyy-MM-dd format.
--thread-culture The custom thread culture to be used for date/time formatting. Such as
zh-TW for Taiwan.
Expand Down

0 comments on commit 47062a6

Please sign in to comment.