From 4eaa945385e33c89c71f5a37f56c1e6a9f914c9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Walenciak?= Date: Sat, 14 Dec 2024 20:55:28 +0100 Subject: [PATCH] Add description --- README.md | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 399e9d4..1373f72 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,20 @@ -## Tool for batch merging video files with subtitles into mkv files ## +## Set of tools for batch video file manipulations -TwoTone is a python script which searches for movie and subtitle files and merges them into one mkv file.
-**Be aware that source files will be deleted** so you may want to backup your data. +Before using any of given scripts backup your data as **source files are being deleted**. -By default subtitles are added without any language label but it can be changed with \-\-language option. See \-\-help for details. +### Merging video files with subtitles into mkv files + +twotone.py is a python script which searches for movie and subtitle files and merges them into one mkv file.
+By default subtitles are added without any language label but it can be changed with \-\-language option.
+See \-\-help for details. + + +### Automatic video reencoding + +encode.py takes video dir as an input parameter and reencodes them with x265 coded. +Script tries to find optimal crf for each video by comparing original video with encoded one and measuring quality. +As of now it looks for crf giving SSIM ≈ 0.98 result. + +Currently this is a very simple script. It has no 'dry run' mode no any other options. Just run it with the input dir.
+Please mind ctrl+c is not supported yet, so be careful when you stop its work.