Metadata-Version: 2.1
Name: clypper
Version: 0.0.2
Summary: Rapidly create supercuts from various video sources.
Home-page: https://github.com/kpj/clypper
License: MIT
Author: kpj
Author-email: kpjkpjkpjkpjkpjkpj@gmail.com
Requires-Python: >=3.6,<4.0
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
Requires-Dist: click (>=7.1.2,<8.0.0)
Requires-Dist: moviepy (>=1.0.3,<2.0.0)
Requires-Dist: pytimeparse (>=1.1.8,<2.0.0)
Requires-Dist: pytube3 (>=9.6.4,<10.0.0)
Requires-Dist: sh (>=1.13.1,<2.0.0)
Requires-Dist: tqdm (>=4.46.0,<5.0.0)
Project-URL: Repository, https://github.com/kpj/clypper
Description-Content-Type: text/markdown

# clypper

[![image](https://img.shields.io/pypi/v/clypper.svg)](https://pypi.python.org/pypi/clypper)

Rapidly create supercuts from various video sources.


## Installation

```python
pip install clypper
```


## Usage

A text file specifying the video source url as well as start and end timestamps can be converted to a supercut using a single command:

```bash
$ cat input.txt
https://www.youtube.com/watch?v=dQw4w9WgXcQ 0:43 0:44
https://www.youtube.com/watch?v=o0u4M6vppCI 1:55 1:59
$ clypper -i input.txt -o supercut.mp4
[..]
$ file supercut.mp4
supercut.mp4: ISO Media, MP4 Base Media v1 [IS0 14496-12:2003]
```


## Developer notes

### Making a new release

```bash
$ bump2version patch # minor major
$ poetry publish --build
```

