https://github.com/kpj/clypper
Rapidly create supercuts from various video sources.
https://github.com/kpj/clypper
Last synced: 26 days ago
JSON representation
Rapidly create supercuts from various video sources.
- Host: GitHub
- URL: https://github.com/kpj/clypper
- Owner: kpj
- License: mit
- Created: 2020-06-01T10:44:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-17T01:40:56.000Z (8 months ago)
- Last Synced: 2025-04-16T21:19:44.235Z (about 1 month ago)
- Language: Python
- Size: 175 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clypper
[](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.2 0:44
https://www.youtube.com/watch?v=o0u4M6vppCI 1:55 1:58.45
$ 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
```