/VideoTrimmer

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

Primary LanguageSwift

VideoTrimmer

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

Usage:

VideoTrimmer file.mp4

You need:

Notes:

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