All Projects â†’ bitgapp â†’ Eqmac

bitgapp / Eqmac

Licence: apache-2.0
macOS System-wide Audio Equalizer & Volume Mixer 🎧

Programming Languages

swift
15916 projects
typescript
32286 projects

Projects that are alternatives of or similar to Eqmac

tsunami
A simple but powerful audio editor
Stars: ✭ 41 (-98.96%)
Mutual labels:  audio-effect, audio-applications, audio-processing
Volumey
Volume mixer that allows you to set up global hotkeys to control your Windows audio system.
Stars: ✭ 139 (-96.48%)
Mutual labels:  volume-control, volume-mixer
EasyEffects-Presets
Presets for EasyEffects and PulseEffects.
Stars: ✭ 235 (-94.05%)
Mutual labels:  volume-control, equalizer
tenacity
Tenacity is an easy-to-use, privacy-friendly, FLOSS, cross-platform multi-track audio editor/recorder for Windows, macOS, Linux and other operating systems. Project currently on an indefinite hiatus.
Stars: ✭ 7,231 (+83.2%)
Mutual labels:  audio-applications, audio-processing
RTspice
A real-time netlist based audio circuit plugin
Stars: ✭ 51 (-98.71%)
Mutual labels:  audio-effect, audio-processing
gensound
Pythonic audio processing and generation framework
Stars: ✭ 69 (-98.25%)
Mutual labels:  audio-effect, audio-processing
AudioStreaming
An AudioPlayer/Streaming library for iOS written in Swift using AVAudioEngine.
Stars: ✭ 59 (-98.51%)
Mutual labels:  coreaudio, avaudioengine
netpd-instruments
instruments (synths, sequencers, utilities, etc) to be used with netpd
Stars: ✭ 18 (-99.54%)
Mutual labels:  audio-applications, audio-processing
Orion
Cross platform Twitch.tv client
Stars: ✭ 298 (-92.45%)
Mutual labels:  osx
Amm
Aria2 Menubar Monitor
Stars: ✭ 312 (-92.1%)
Mutual labels:  osx
Socket.io Tester
Deprecated: An electron app that lets you connect to a socket.io server and subscribe to a certain topic and/or lets you send socket messages to the server
Stars: ✭ 297 (-92.48%)
Mutual labels:  osx
Gpgsync
🔒 GPG Sync is designed to let users always have up-to-date public keys for other members of their organization
Stars: ✭ 301 (-92.37%)
Mutual labels:  osx
Termipal
Instant, native micro-GUIs for shell scripts and command line apps
Stars: ✭ 313 (-92.07%)
Mutual labels:  osx
Opencore Vanilla Desktop Guide
Host for files for the OpenCore Vanilla Desktop Guide
Stars: ✭ 299 (-92.42%)
Mutual labels:  osx
Surfboard
Novoic's audio feature extraction library
Stars: ✭ 318 (-91.94%)
Mutual labels:  audio-processing
Gank For Mac
💎 The missing Mac OS X application for gank.io (Swift)
Stars: ✭ 295 (-92.53%)
Mutual labels:  osx
Csv2keychain
Small tool for adding exported credentials from Chrome to macOS keychain
Stars: ✭ 295 (-92.53%)
Mutual labels:  osx
Klystrack
A chiptune tracker
Stars: ✭ 321 (-91.87%)
Mutual labels:  osx
Vectorhub
Vector Hub - Library for easy discovery, and consumption of State-of-the-art models to turn data into vectors. (text2vec, image2vec, video2vec, graph2vec, bert, inception, etc)
Stars: ✭ 317 (-91.97%)
Mutual labels:  audio-processing
Vim Anywhere
Use Vim everywhere you've always wanted to
Stars: ✭ 3,295 (-16.52%)
Mutual labels:  osx

discord chat

Features

Current

  • System audio Source
  • Volume Booster
  • HDMI Volume Support
  • Volume Balance support for all devices (including HDMI)
  • Basic EQ - Bass, Mids, Treble control
  • Advanced EQ - Fixed 10 bands
  • Expert EQ* - Unlimited bands, fully customizable (Filter Type, Frequency, Gain, Bandwidth)
  • Spectrum analyzer*
  • AutoEQ Integration*
  • Reverb* - Spatial audio enhancement
  • Volume Mixer* - Apply different volume levels per each application

*Not Open Sourced

Roadmap

Idea is to become the ultimate Audio toolbox for macOS (some features might not be open sourced)

  • Input Audio Source - Apply effects to any device: guitar, microphone etc.
  • Virtual Output - Export the Adjusted audio to any application
  • Custom UI - Fully customize the look and feel of eqMac by changing the User Interface Colors, Feature visibility and arrangement.
  • Hotkeys - Control eqMac with Keyboard Shortcuts
  • Recorder - save any audio playback (System, Input device, File)
  • Remote control from your phone
  • Separate L/R Channel EQ - Fix hearing impairements
  • API - Control all aspects of eqMac through a WebSocket API. Works with any programming language that supports WebSockets.
  • File playback and rendering - Apply effects to audio files and instantly render them
  • and more...

Vote on the Features you want to see sooner

User support

This project is heavily reliant on the whole community helping each other out. If you have an issue with eqMac please go through Issues to see if it's already being discussed, if not create a new one. Also you can join our Discord, I'm there all the time and I like to chat with people.

Technology

eqMac was built using these technologies:

  • Driver - System Audio loopback/passthrough device based on Apple's Null Audio Server Driver Plug-in example. One of the first Examples of a macOS System Capture drivers written in Swift. The driver grabs the system audio stream and sends it to the input channels (similar to BlackHole). eqMac can grab this stream, process it and send to the appropriate audio device. The driver runs in User space instead of Kernel like the previous drivers (i.e SoundFlower), which means it's much more secure and stable.
  • App - Native backend to the whole app. Responsible for audio processing, filesystem access, window management, API and general lifecycle of eqMac. Written in Swift and uses Apple's more modern AVAudioEngine API, unlike the previous version that used a deprecated AUGraph API.
  • UI - Web based user interface that is hosted remotely and thus allows for over the air updates & bug fixes. Built with Angular + TypeScript and is cached for offline availability.

Contribution

At the moment eqMac is going through a major rewrite and it's hard to coordinate the development of big features. But bug fixes, performance optimizations and refactoring PR's are welcomed! Please create an issue on GitHub (please check if your issue is already being discussed) or join our Discord to discuss. Once a piece of work has been agreed - fork, build, debug, fix, merge and create a Pull Request to get your work merged in :) Check the documentation below to understand how to start eqMac debug process from Xcode

Development

Fork the repository, then run these commands in Terminal.app:

git clone https://github.com/YOUR_USERNAME/eqMac.git
cd eqMac/

Native app + driver

Prerequisites

  1. Download Xcode
  2. Install CocoaPods by sudo gem install cocoapods

Building and running the App

  1. Go into the native/app directory from root of the repo by: cd native/
  2. Install Cocoapod dependencies: pod install
  3. Open the Xcode workspace: open eqMac.xcworkspace
  4. Launch eqMac in debug mode by running the App - Debug Scheme:

Web User Interface

You don't need to run the UI code locally to debug just the Swift side of the app, unless you want to debug the UI code :) If you want to run the web based User Interface locally then you need to follow these steps to make that happen:

Prerequisites

Install Node.js LTS version preferrably using NVM

Install Yarn v1 globally: npm i -g yarn (this is needed because the project uses Yarn Workspaces)

Building and running the Web UI

  1. Run yarn from the root directory of the Monorepo
  2. Go into the ui/ directory by cd ui/
  3. Start local development server with yarn start

Credits

@nodeful - Creator and Developer of eqMac

Apple Inc. - For open sourcing this HAL Driver Example

@titanicbobo - For the Big Sur icon design

Max Heim - For his research and work on creating the first Swift based Audio Server Plug-in Driver - Pancake

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].