Documentation and abstractions for adding logs to av-centric scripts
Loglog is a meta-documentation project meant to help developers add logging functions to their scripts. Provided in the repository are a template scripts that provide examples of how to use and implement logs in various scripting languages. There are also scripts that have minor utility that are meant to serve as examples as of how scripting can be used advantageously.
This is a template that can be used to implement logging in Bash. There are a series of functions defined in bash_logging.config
. Here are functions
logCreate
: This initializes the log. It must be called before any of the following functions will work.logOpen
: This opens the log using the native OS's preferred application.logNewLine
: This adds a new line to the log, including a timestamplogCurrentLine
: This appends to the last line in the log, not adding any timestampslogLog
: This eponymous function logs how long it takes for a specific function to fun.logOut
: When placed in a script this function redirects the stdout and the stderr to the log. They are not printed to console
This is a template that can be used to implement logging in Python 3
There are two possible input flags
-v
- This is the verbose flag. It re-routes all log messages to stoud (standard out) There are four different ways to run.-v
- ERROR level messages are printed to stout-vv
- WARNING level messages are printed to stout-vvv
- INFO level messages are printed to stout-vvvv
- DEBUG level messages are printed to stout
-d
- This runs the script in DEBUG mode. In this mode DEBUG messages and lower will be printed to the log
This script will normalize the audio of whatever video file is input. The script uses ffmpeg detect the maximum volume of the input file and output that to the log. It will then run ffmpeg a second time to raise the volume of the input file to 0dB (standard normalization procedure). The script will also detect the input file's audio codec, preserving it in the output file.