Go to file
LightArrowsEXE 7c55ab466c Update generate_keyframes.py
Thanks to begna for rewriting parts of it!

Changelog:
* Remove unnecessary 'dependencies' from list
* Add a "no-header" mode. Removes header from keyframe file, which is only used by Aegisub.
* Move bitdepth conversion to generate_keyframes function.
* Add total framecount to the progress bar
* Remove out_path in generate_keyframes
* Add -F: allows you to input a file for generating, rather than having loop through the entire directory (and sub-directories)
* Add linebreak after the first print
* Remove extension in final keyframe filename
* Print output name once done generating keyframes
2019-08-16 09:24:41 +02:00
old and dumb scripts Update fansub-util repository 2019-07-16 13:41:24 +02:00
.gitattributes Initial commit 2019-03-18 12:49:08 +01:00
.gitignore Create .gitignore 2019-03-18 13:23:07 +01:00
auto-CRC.py Update fansub-util repository 2019-07-16 13:41:24 +02:00
encode_audio.py Update encode_audio.py 2019-08-09 03:31:03 +02:00
generate_keyframes.py Update generate_keyframes.py 2019-08-16 09:24:41 +02:00
README.md Update README.md 2019-07-16 13:49:56 +02:00
remux.py Update fansub-util repository 2019-07-16 13:41:24 +02:00

A collection of utilities for fansubbing that I've written. Improvements and ideas are always welcome.

Requirements:

  • Python 3.6 or higher

Usage:

$ python [script].py [--args]

Utilities:

auto-CRC

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
--recursive -R check recursively

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
--recursive -R check recursively
--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.
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)