summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mkvtool/go.mod2
-rw-r--r--mkvtool/main.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/mkvtool/go.mod b/mkvtool/go.mod
index 7ddd60c..f48e7a4 100644
--- a/mkvtool/go.mod
+++ b/mkvtool/go.mod
@@ -2,7 +2,7 @@ module github.com/KurenaiRyu/MkvAutoSubset/mkvtool
go 1.18
-require github.com/KurenaiRyu/MkvAutoSubset/mkvlib v0.0.0-20220505083004-4c56574f9bf7
+require github.com/KurenaiRyu/MkvAutoSubset/mkvlib v0.0.0-20220506024655-79f40d4f7bed
require github.com/google/uuid v1.3.0
diff --git a/mkvtool/main.go b/mkvtool/main.go
index 2e2501a..5d0820f 100644
--- a/mkvtool/main.go
+++ b/mkvtool/main.go
@@ -103,8 +103,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 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 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. (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(&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.`)