Update README.md

This commit is contained in:
LightArrowsEXE 2019-07-16 13:49:56 +02:00
parent b712c60cbd
commit ec41783606

View file

@ -1,4 +1,6 @@
A collection of utilities for fansubbing that I've written. Improvements and ideas are always welcome.
A collection of utilities for fansubbing
that I've written.
Improvements and ideas are always welcome.
## Requirements:
- Python 3.6 or higher
@ -9,22 +11,51 @@ A collection of utilities for fansubbing that I've written. Improvements and ide
# Utilities:
## auto-CRC
A small script that appends CRC-32's to every mkv in the current directory.
A small script that
appends CRC-32's to every mkv
in the current directory.
### Arguments:
| Argument | Arg | Description |
| -------- | --- | --------------------------------- |
| --help | -h |show this help message and exit
| Argument | Arg | Description |
| -------- | --- | ----------- |
| --help | -h |show this help message and exit |
| --recursive | -R | check recursively |
## clean-dir
Cleans a directory of everything but mkv's or a given *ext*.<br>
Please make sure it doesn't accidently wipe everything else you *need* to include in there.
*Ext* is intended to be used for other video extensions, like mp4, webm, etc.
## encode-audio
Automatically encodes audio
in the current directory
to AAC (using qaac -V 127)
or FLAC.
### Arguments:
| Argument | Arg | Description |
| -------- | --- |--------------------------------- |
| --help | -h | show this help message and exit
| Argument | Arg | Description |
| -------- | --- |------------ |
| --help | -h | show this help message and exit |
| --recursive | -R | check recursively |
| --extension | -E | change extension |
| --flac | -F | enable FLAC encoding |
## generate_keyframes
Generic script to generate keyframes
for all files of a given extension
using kagefunc's `generate_keyframes` function.
### Arguments:
| Argument | Arg | Description |
| -------- | --- |------------ |
| --help | -h | show this help message and exit |
| --recursive | -R | check recursively |
| --extension | -E | pick extension to generate keyframes for |
## remux
Generic script for remuxing files
from a certain filetype into another.<br>
Remuxes mkv's into mp4's
by default
### Arguments:
| Argument | Arg | Description |
| -------- | --- | ----------- |
| --recursive | -R | check recursively |
| --input_ext | -i | set input's extension (default: mkv) |
| --output_ext | -o | set output's extension (default: mp4) |