All Projects → dodiku → MixingBear

dodiku / MixingBear

Licence: MIT license
Package for automatic beat-mixing of music files in Python 🐻🎚

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to MixingBear

Audioowl
Fast and simple music and audio analysis using RNN in Python 🕵️‍♀️ 🥁
Stars: ✭ 151 (+106.85%)
Mutual labels:  analysis, ml, pip, feature-extraction, music-information-retrieval
vamp-aubio-plugins
aubio plugins for Vamp
Stars: ✭ 38 (-47.95%)
Mutual labels:  analysis, music-information-retrieval, beat-detection
ACA-Slides
Slides and Code for "An Introduction to Audio Content Analysis," also taught at Georgia Tech as MUSI-6201. This introductory course on Music Information Retrieval is based on the text book "An Introduction to Audio Content Analysis", Wiley 2012/2022
Stars: ✭ 84 (+15.07%)
Mutual labels:  audio-analysis, music-information-retrieval, audio-processing
emusic net
Neural network to classify certain styles of Electronic music
Stars: ✭ 22 (-69.86%)
Mutual labels:  music-information-retrieval, mir, audio-processing
MusicVisualizer
A music visualizer based on the ATMEGA328P-AU
Stars: ✭ 30 (-58.9%)
Mutual labels:  audio-analysis, audio-processing
Msmbuilder
🏗 Statistical models for biomolecular dynamics 🏗
Stars: ✭ 118 (+61.64%)
Mutual labels:  analysis, feature-extraction
da-tacos
A Dataset for Cover Song Identification and Understanding
Stars: ✭ 50 (-31.51%)
Mutual labels:  audio-analysis, music-information-retrieval
AnotherBadBeatSaberClone
This is a discontinued but perhaps helpful VR project created during my Master's degree at FH Wedel.
Stars: ✭ 22 (-69.86%)
Mutual labels:  audio-processing, beat-detection
Niftynet
[unmaintained] An open-source convolutional neural networks platform for research in medical image analysis and image-guided therapy
Stars: ✭ 1,276 (+1647.95%)
Mutual labels:  ml, pip
spafe
🔉 spafe: Simplified Python Audio Features Extraction
Stars: ✭ 310 (+324.66%)
Mutual labels:  audio-analysis, music-information-retrieval
audio noise clustering
https://dodiku.github.io/audio_noise_clustering/results/ ==> An experiment with a variety of clustering (and clustering-like) techniques to reduce noise on an audio speech recording.
Stars: ✭ 24 (-67.12%)
Mutual labels:  audio-analysis, audio-processing
essentia-tutorial
A tutorial for using Essentia in Python
Stars: ✭ 16 (-78.08%)
Mutual labels:  audio-analysis, music-information-retrieval
mildnet
Visual Similarity research at Fynd. Contains code to reproduce 2 of our research papers.
Stars: ✭ 76 (+4.11%)
Mutual labels:  ml, feature-extraction
PyTorch-Model-Compare
Compare neural networks by their feature similarity
Stars: ✭ 119 (+63.01%)
Mutual labels:  pip, feature-extraction
meyda-rs
This may become an audio feature extraction library for Rust.
Stars: ✭ 15 (-79.45%)
Mutual labels:  audio-features, audio-analysis
video features
Extract video features from raw videos using multiple GPUs. We support RAFT and PWC flow frames as well as S3D, I3D, R(2+1)D, VGGish, CLIP, ResNet features.
Stars: ✭ 225 (+208.22%)
Mutual labels:  audio-features, feature-extraction
Essentia
C++ library for audio and music analysis, description and synthesis, including Python bindings
Stars: ✭ 1,985 (+2619.18%)
Mutual labels:  audio-analysis, music-information-retrieval
Gist
A C++ Library for Audio Analysis
Stars: ✭ 244 (+234.25%)
Mutual labels:  audio-analysis, music-information-retrieval
audio degrader
Audio degradation toolbox in python, with a command-line tool. It is useful to apply controlled degradations to audio: e.g. data augmentation, evaluation in noisy conditions, etc.
Stars: ✭ 40 (-45.21%)
Mutual labels:  mir, audio-processing
tomato
Turkish-Ottoman Makam (M)usic Analysis TOolbox
Stars: ✭ 30 (-58.9%)
Mutual labels:  analysis, music-information-retrieval

GitHub license PRs Welcome

MixingBear

Automatic beat-mixing of music files in Python, using AudioOwl 🎚

Jump to:

MixingBear

Quickstart

Mix two WAV files -

import mixingbear
mixingbear.mix('track01.wav', 'track02.wav', 'output.wav')

Installation

Tested on Python 3.6 or later

⚠️ AudioOwl needs ffmpeg to be installed on your machine. The easiest way to install ffmpeg (at least on a Mac) is using homebrew. See instructions here.

The latest stable release is available on PyPI.
Install it using the following command -

$ pip install mixingbear

Usage

mixingbear.mix()

Saves a mixed WAV file locally to output_file_path

Supported keyword arguments for audioowl.get_waveform():

  • top_file - Path to a WAV file you want to mix onto bottom_file. e.g. top_file=wav_file.wav
  • bottom_file - Path to a WAV file you want to mix top_file onto. e.g. bottom_file=wav_file.wav
  • output_file_path - Path for the mixed output WAV file you want to mix output_file_path onto. e.g. bottom_file=output.wav
  • mix_mode [optional, default == 'random'] - String:
    • random - MixingBear will find the best mixing points, and will mix the tracks starting on a random one out of them.
    • first - MixingBear will find the best mixing points, and will mix the tracks on the first one.
  • sr [optional, default == 22050] - Integer. Sample rate.
  • offset [optional, default == 880, equal to ~20 milliseconds on a track with 44100 sample rate] - Integer. Number of samples to use as padding on beats, to choose sync points. e.g. With offset=880, beats will be considered as 'matching' is they are positioned away from each other in 880 samples or less.
  • trim_silence [optional, default == False] - Boolean. If True, MixingBear will trim leading silence on top_file.
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].