Skip to content
/ FFvid Public

Fast and easy-to-use video editor based on FFmpeg.

Notifications You must be signed in to change notification settings

docentYT/FFvid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.