Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Jul 27, 2021
2 parents a3aebdf + eecb8eb commit 26627d1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $ video-sync -h # help page
- `-t, --threshold=<number>` [default: 0.6] minimum confidence threshold for video syncing. (requires algorithm=simple)
- `-w, --searchWidth=<number>` [default: 20] width of the search region (in seconds) for video syncing. the program will find the closest matching frame in this region, 'sourceOffset' being the center (requires algorithm=simple)

- `-y, --confirm` automatically confirm missing tracks, low confidence scores and overwrite prompts
- `-y, --confirm` automatically confirm missing tracks, low confidence scores, warped videos and overwrite prompts

- `-v, --verbose` output additional logs

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "video-sync",
"version": "0.7.0",
"version": "0.8.0",
"author": "Chaphasilor",
"bin": {
"video-sync": "./bin/run"
Expand Down
3 changes: 1 addition & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,7 @@ VideoSyncCommand.flags = {
}),
confirm: flags.boolean({
char: `y`,
description: `automatically confirm missing tracks, low confidence scores and overwrite prompts
`,
description: `automatically confirm missing tracks, low confidence scores, warped videos and overwrite prompts`,
required: false, // if omitted, only the offset is printed
default: false,
}),
Expand Down

0 comments on commit 26627d1

Please sign in to comment.