diff --git a/install.sh b/install.sh index 9f1dc40..d92e624 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #! /bin/bash ROOT="${1}" -LIBDIR="${ROOT}/usr/lib/over/hex" +LIBDIR="${ROOT}/usr/lib/over/video" BINDIR="${ROOT}/usr/bin" BIN="over-video" diff --git a/over-video.py b/over-video.py index c51850d..433ce74 100755 --- a/over-video.py +++ b/over-video.py @@ -54,7 +54,7 @@ if __name__ == "__main__": main.add_option("probe", "Print the raw JSON output of ffprobe and exit.", bool, [False], abbr="p", in_cfg_file=False) main.add_option("armed", "Perform the suggested action.", bool, [False], abbr="A", in_cfg_file=False) - main.add_doc("Description", ["Over-Video is a simple video converter."]) + main.add_doc("Description", ["A video converter meant to coerce all video formats into HEVC+Vorbis within Matroska containers. Other uses include extracting audio from video files, resizing, cutting..."]) main.add_doc("Good encoder settings", ["x264<.>: --video<.> x264<.> --video-preset<.> slow<.> --video-quality<.> 22<.>", "x265<.>: --video<.> x265<.> --video-preset<.> medium<.> --video-quality<.> 20<.>"]) main.setup() diff --git a/version.py b/version.py index 4b1ba65..5910c23 100644 --- a/version.py +++ b/version.py @@ -4,5 +4,5 @@ major = 1 # VERSION_MAJOR_IDENTIFIER minor = 102 # VERSION_MINOR_IDENTIFIER # VERSION_LAST_MM 1.102 -patch = 2 # VERSION_PATCH_IDENTIFIER +patch = 3 # VERSION_PATCH_IDENTIFIER str = ".".join(str(v) for v in (major, minor, patch))