This repository houses a collection of FFmpeg scripts designed to automate a variety of video editing tasks. Simply drag and drop your video files onto the respective scripts to easily crop, scale, overlay, and apply other effects to your videos.
- FFmpeg: Install the latest version from ffmpeg.org
- (Optional) NVIDIA GPU: Some scripts in this repository make use of FFmpeg with NVIDIA hardware acceleration. A compatible NVIDIA GPU is needed for those specific scripts.
- Clone this repository.
- Make sure FFmpeg is installed and added to your PATH environment variable.
- Just drag and drop your video files onto the respective .bat file
To use the scripts in this repository, you don't need to manually run any commands. Just drag and drop your video files onto the respective scripts to execute the corresponding actions.
This repository primarily contains Windows batch files (.bat), which are designed to run natively on Windows systems. However, if you wish to use them on Linux or macOS, you have several options:
- Manually convert the
.bat
files to Shell scripts (.sh). - Use Shell commands to perform the same operations.
You can use the Wine compatibility layer to run Windows applications on Linux.
- Install Wine
sudo apt install wine
- Run the batch file
wine cmd /c your-script.bat
- Create a Windows virtual machine or container.
- Run the batch files inside the virtual environment.
You could also rewrite these batch files using a cross-platform language like Python, Ruby, or Node.js to make them compatible with other operating systems.
If you find any bugs or have feature requests, feel free to open an issue or submit a pull request.