Skip to content

GodGun968/waveform

This branch is 44 commits behind phandasm/waveform:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

43c3d84 · Jul 11, 2023
Dec 22, 2022
Dec 22, 2022
Feb 27, 2023
Jul 11, 2023
Nov 13, 2021
Feb 9, 2023
May 12, 2022
Jul 10, 2023
Sep 1, 2022
Oct 25, 2021
Jul 11, 2023
Oct 25, 2021
Jul 11, 2023
May 1, 2023
Jul 11, 2023

Repository files navigation

Waveform

Mac/Linux CI
Waveform is an audio spectral analysis plugin for OBS Studio.
It is based on FFTW and optimized for AVX2/FMA3.
Screenshot

Compiling

Prerequisites

Clone the repo with submodules: git clone --recurse-submodules
Or if you already cloned without them: git submodule update --init --recursive

Minimum Supported Compilers

  • GCC 10.1
  • Clang 11.0
  • VS 2019 16.8

Windows

Waveform's only external dependency is libobs.
You'll need to build obs-studio separately and point CMake to it when building Waveform.
From the CLI interface, the latter can be accomplished via -DCMAKE_PREFIX_PATH="path/to/obs-studio/build".

Linux

Ubuntu 20.04

# install build tools
sudo apt-get install build-essential git cmake

# install dependencies
sudo apt-get install libobs-dev libfftw3-dev libfftw3-3

# clone repo
git clone --recurse-submodules https://github.com/phandasm/waveform.git

# build in subfolder
mkdir waveform/build
cd waveform/build

# build
cmake ..
make
make install

Fedora

Prerequisite: OBS packages from RPM Fusion (see OBS Wiki).

sudo dnf install @development-tools cmake obs-studio-devel fftw-devel

git clone --recurse-submodules https://github.com/phandasm/waveform.git
mkdir waveform/build
cd waveform/build

cmake ..
make
make install

Packages

No packages published

Languages

  • C++ 92.1%
  • CMake 7.9%