diff options
Diffstat (limited to 'mkvtool')
| -rw-r--r-- | mkvtool/go.mod | 2 | ||||
| -rw-r--r-- | mkvtool/main.go | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mkvtool/go.mod b/mkvtool/go.mod index 4d01110..07f8fda 100644 --- a/mkvtool/go.mod +++ b/mkvtool/go.mod @@ -2,7 +2,7 @@ module github.com/MkvAutoSubset/MkvAutoSubset/mkvtool go 1.18 -require github.com/MkvAutoSubset/MkvAutoSubset/mkvlib v0.0.0-20220507135658-002f01026127 +require github.com/MkvAutoSubset/MkvAutoSubset/mkvlib v0.0.0-20220509073418-da63b85a97bd require ( github.com/antchfx/xmlquery v1.3.10 // indirect diff --git a/mkvtool/main.go b/mkvtool/main.go index d438018..cd7f6cf 100644 --- a/mkvtool/main.go +++ b/mkvtool/main.go @@ -16,7 +16,7 @@ import ( ) const appName = "MKV Tool" -const appVer = "v3.9.3" +const appVer = "v3.9.7" const tTitle = appName + " " + appVer var appFN = fmt.Sprintf("%s %s %s/%s", appName, appVer, runtime.GOOS, runtime.GOARCH) @@ -102,8 +102,8 @@ func main() { flag.StringVar(&data, "data", "data", "Subtitles & Fonts folder (dump & make mode only)") flag.StringVar(&dist, "dist", "dist", "Results output folder (make mode only)") flag.StringVar(&flog, "log", "", "Log file path.") - flag.StringVar(&pf, "pf", "23.976", "PGS or blank video frame rate:23.976, 24, 25, 30, 29.97, 50, 59.94, 60 or custom fps like 15/1. (ass2pgs only)") - flag.StringVar(&pr, "pr", "1920*1080", "PGS or blank video resolution:720p, 1080p, 2k, or with custom resolution like 720*480. (ass2pgs only)") + flag.StringVar(&pf, "pf", "23.976", "PGS or blank video frame rate:23.976, 24, 25, 30, 29.97, 50, 59.94, 60 or custom fps like 15/1.") + flag.StringVar(&pr, "pr", "1920*1080", "PGS or blank video resolution:720p, 1080p, 2k, or with custom resolution like 720*480.") flag.StringVar(&t, "t", "", `Create test video source path(enter "-" for blank video).`) flag.BoolVar(&b, "b", false, `Create test video with burn subtitle.`) flag.StringVar(&e, "e", "libx264", `Create test video use encoder.`) |
