Skip to content

Commit 26627d1

Browse files
committed
Merge branch 'dev'
2 parents a3aebdf + eecb8eb commit 26627d1

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $ video-sync -h # help page
5959
- `-t, --threshold=<number>` [default: 0.6] minimum confidence threshold for video syncing. (requires algorithm=simple)
6060
- `-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)
6161

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

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

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "video-sync",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"author": "Chaphasilor",
55
"bin": {
66
"video-sync": "./bin/run"

src/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,7 @@ VideoSyncCommand.flags = {
316316
}),
317317
confirm: flags.boolean({
318318
char: `y`,
319-
description: `automatically confirm missing tracks, low confidence scores and overwrite prompts
320-
`,
319+
description: `automatically confirm missing tracks, low confidence scores, warped videos and overwrite prompts`,
321320
required: false, // if omitted, only the offset is printed
322321
default: false,
323322
}),

0 commit comments

Comments
 (0)