An open API service indexing awesome lists of open source software.

https://github.com/rlxone/videotrimmer

✂️🎞️ Small macOS tool for cutting the large video into smaller ones and making thumbnails based on chroma pixel.
https://github.com/rlxone/videotrimmer

ffmpeg handbrakecli macos swift video-trimmer

Last synced: 2 months ago
JSON representation

✂️🎞️ Small macOS tool for cutting the large video into smaller ones and making thumbnails based on chroma pixel.

Awesome Lists containing this project

README

          



# VideoTrimmer

Small tool for cutting large video to small ones and making thumbnails based on chroma pixel

## Usage:
`VideoTrimmer file.mp4`

## You need:
- [ffmpeg](https://www.ffmpeg.org/)
- [handbrake-cli](https://handbrake.fr/)

## Notes:
- Change chroma pixel to different in Application.swift
```swift
fileprivate struct Constants {
static let chroma: (UInt8, UInt8, UInt8) = (0, 254, 0)
static let xPixel = 256
static let yPixel = 256
}
```