summaryrefslogtreecommitdiff
path: root/mkvtool/main.go
diff options
context:
space:
mode:
authorb5f0d6c3 <[email protected]>2022-04-21 12:03:53 +0800
committerb5f0d6c3 <[email protected]>2022-04-21 12:03:53 +0800
commitad399fedbdf6f3bd2b00ae6fd8c07d68396c5972 (patch)
treeabf0f14820d3884eb6e10357d5aaa691f69595a5 /mkvtool/main.go
parent4219efb8ffe540d9c9068a18d6d2cc0c23ce9c05 (diff)
update mkvtool:mkvlib bump to v1.3.0
Diffstat (limited to 'mkvtool/main.go')
-rw-r--r--mkvtool/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/mkvtool/main.go b/mkvtool/main.go
index 6887509..0305efe 100644
--- a/mkvtool/main.go
+++ b/mkvtool/main.go
@@ -13,7 +13,7 @@ import (
)
const appName = "MKV Tool"
-const appVer = "v3.3.7"
+const appVer = "v3.3.8"
const tTitle = appName + " " + appVer
var appFN = fmt.Sprintf("%s %s %s/%s", appName, appVer, runtime.GOOS, runtime.GOARCH)
@@ -84,7 +84,7 @@ 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.IntVar(&pf, "pf", 23, "PGS frameRate:23,24,25,29,30,50,59,60. (ass2pgs only)")
+ flag.IntVar(&pf, "pf", 23, "PGS frame rate:23,24,25,29,30,50,59,60. (ass2pgs only)")
flag.IntVar(&pr, "pr", 1080, "PGS resolution:480,576,720,1080,2160. (ass2pgs only)")
flag.BoolVar(&v, "v", false, "Show app info.")
flag.Parse()