Metadata-Version: 2.1
Name: vwrt
Version: 0.0.4
Summary: Video Waste Reduction Tool: Automated video editing
Home-page: https://github.com/evnb/vwrt
License: MIT
Keywords: Ffmpeg,Accessibility,Video Editing,YouTube
Author: Evan Binder
Author-email: evanmbinder@gmail.com
Requires-Python: >=3.6,<4.0
Classifier: Environment :: Console
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Multimedia
Classifier: Topic :: Multimedia :: Sound/Audio
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Utilities
Requires-Dist: numpy (>=1.19.2,<1.20.0)
Project-URL: Repository, https://github.com/evnb/vwrt
Description-Content-Type: text/markdown

# Video Waste Reduction Tool in Python

## Intro

This is a complete python rewrite of [the C++
vwrt](https://github.com/evnb/vwrt).

## Dependencies

-   python3

-   numpy

-   ffmpeg

## Usage

`user$ vwrt [-i INPUT] [-t SPEED] [-s SPEED] [-o OUTDIR]`

## Required Arguments

-   `-i INPUT` or `--input INPUT`: add input
    video<sup>[1](#1)</sup>

-   `-t SPEED` or `--talk-speed SPEED`: set talk speed (aka speed when
    video is above volume threshold)<sup>[1](#1)</sup>

-   `-s SPEED` or `--silence-speed SPEED`: set silence speed (aka speed
    when video is below volume
    threshold)<sup>[1](#1)</sup>

-   `-o OUTDIR` or `--outdir OUTDIR`: set output directory

## Optional Arguments

-   `-h` or `--help`: show this help message and exit

-   `-v` or `--verbose`: set verbose mode

-   `-f` or `--add-frames`: overlay timecode on video before processing

-   `-d` or `--dry-run`: skip video processing

1.  Supports multiple arguments of the same type for batch processing. VWRT will cycle
    through given values until there are no more inputs.

