https://github.com/toxblh/davinci-linux-aac-codec
AAC Encoder Plugin for DaVinci Resolve Studio
https://github.com/toxblh/davinci-linux-aac-codec
aac davinci davinci-plugin encoder plugin
Last synced: 4 months ago
JSON representation
AAC Encoder Plugin for DaVinci Resolve Studio
- Host: GitHub
- URL: https://github.com/toxblh/davinci-linux-aac-codec
- Owner: Toxblh
- Created: 2025-05-24T18:45:10.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-13T00:19:02.000Z (10 months ago)
- Last Synced: 2025-08-13T02:31:19.540Z (10 months ago)
- Topics: aac, davinci, davinci-plugin, encoder, plugin
- Language: C++
- Homepage:
- Size: 164 KB
- Stars: 26
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DaVinci Resolve FFmpeg AAC Audio Encoder Plugin
This project is a DaVinci Resolve audio encoder plugin for AAC using FFmpeg.
It builds a plugin compatible with the IOPlugins system of DaVinci Resolve Studio (Free doesn't support plugins) for Linux.
## Features
- AAC encoding using FFmpeg
## Requirements
- DaVinci Resolve Studio (FREE does NOT support plugins!)
- FFmpeg
## Install
- Download aac_encoder_plugin-linux-bundle.tar.gz from [Releases](https://github.com/Toxblh/davinci-linux-aac-codec/releases)
- Unpack
- Exec `./install.sh` (or check Readme inside)
------------
## Build Requirements
- Linux x86-64
- C++ compiler (g++ >= 9 recommended)
- FFmpeg development libraries (`libavcodec-dev`, `libavutil-dev`)
- CMake (if you want to use it)
- Make
### Install dependencies (Ubuntu/Debian example)
```
sudo apt update
sudo apt install build-essential pkg-config libavcodec-dev libavutil-dev
```
## Build
To build the plugin and package it for DaVinci Resolve:
```
./build.sh
```
The output will be in:
```
aac_encoder_plugin.dvcp.bundle/Contents/Linux-x86-64/aac_encoder_plugin.dvcp
```
## Install
To install the plugin into DaVinci Resolve:
```
sudo ./install.sh
```
This will copy the plugin bundle to `/opt/resolve/IOPlugins`.
---
## License
GPLv3

