https://github.com/manzdev/supervideo-cli
Video manager command-line interface for fast and easy convert and other simple tasks
https://github.com/manzdev/supervideo-cli
cli ffmpeg info join split video
Last synced: about 1 year ago
JSON representation
Video manager command-line interface for fast and easy convert and other simple tasks
- Host: GitHub
- URL: https://github.com/manzdev/supervideo-cli
- Owner: ManzDev
- Created: 2019-01-14T05:54:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-14T05:55:49.000Z (over 7 years ago)
- Last Synced: 2024-10-15T11:32:12.505Z (over 1 year ago)
- Topics: cli, ffmpeg, info, join, split, video
- Language: JavaScript
- Size: 38.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# supervideo-cli
A simple cli command for video tasks like as split, join and show info from videos.

### Installation
```bash
npm install -g supervideo-cli
```
### Usage
```bash
// Read video.txt and split video.mp4 into specified chunks
supervideo split video.mp4
```
On previous example, you need a text file with same filename but `.txt` extension with fragments (`video.txt` in this example):
```bash
00:00 01:32 part1.mp4
01:32 22:14 part2.mp4
```
```bash
// Joins a, b & c into one file: out.mp4
supervideo concat a.mp4 b.mp4 c.mp4 -o out.mp4
// Create timelapse from video
supervideo timelapse vid.mp4 --speed 0.05 -o fast.mp4
// Info from video
supervideo info video.mp4
```
### Credits
Uses ffmpeg, a brilliant software for work with video: http://ffmpeg.org/