Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 541 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 541 Bytes

fastcut

fastcut lets you cut a fragment of a video with minimal re-encoding. Inspired by VidCutter and avcut.

Usage: fastcut [options] <input_file> <start_time> <end_time> <output_file>

Options:
  -i <n>       ignore track number n

How to build

Install dependencies

Ubuntu: sudo apt install libavcodec-dev libavformat-dev
Arch: sudo pacman -S ffmpeg

Build using CMake:

mkdir build && cd build
cmake ..
cmake --build .