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.
- Host: GitHub
- URL: https://github.com/rlxone/videotrimmer
- Owner: rlxone
- Created: 2019-04-29T21:30:56.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-04T14:35:18.000Z (over 6 years ago)
- Last Synced: 2025-01-06T09:45:49.637Z (over 1 year ago)
- Topics: ffmpeg, handbrakecli, macos, swift, video-trimmer
- Language: Swift
- Homepage:
- Size: 1.3 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
}
```