fixes a collision in install.sh
This commit is contained in:
parent
89e8deeb65
commit
fa9b3fe790
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
||||
|
|
|
@ -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", ["<W>x264<.>: <W>--<g>video<.> <M>x264<.> <W>--<g>video-preset<.> <M>slow<.> <W>--<g>video-quality<.> <M>22<.>", "<W>x265<.>: <W>--<g>video<.> <M>x265<.> <W>--<g>video-preset<.> <M>medium<.> <W>--<g>video-quality<.> <M>20<.>"])
|
||||
|
||||
main.setup()
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue