Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.64 KB

README.md

File metadata and controls

39 lines (31 loc) · 1.64 KB

Fast and easy-to-use video editor based on FFmpeg. Cross-platform, native GUI allows you to get the performance of pure FFmpeg without having to remember commands.

⚡ Fast

No re-encoding where possible is the fastest possible option for editing videos.

🖥️ Native feel

Using the C++ language and the multi-platform wxWidgets library generates a fast and clean application that launches in the blink of an eye.

Windows 11 GTK 3
Windows 11 GTK 3

✨ Functions

FFvid currently offers:

  • video trimming
  • joining multiple videos into one
  • adding a watermark to a video
  • removing data (video, audio, subtitles, data streams) from file

🚀 How to install

Windows

A simple installer has been prepared for Windows users and is available on the Releases page.

Compile from source

You will need CMake and wxWidgets installed. On systems other than Windows, the fmt library is also needed. To build the project in debug configuration use:

cmake -S. -Bbuild
cmake --build build

or if you want to build in release configuration:

cmake -S. -Bbuild
cmake --build build --config Release

The main executable can be found in the build/out/(Debug or Release) directory.

To create an installer for Windows use cpack -C Release in build directory.