All Projects → dhrebeniuk → RosaKit

dhrebeniuk / RosaKit

Licence: MIT license
LibRosa port to Swift for ability using same prepossessing logic in iOS/MacOS platforms

Programming Languages

Jupyter Notebook
11667 projects
swift
15916 projects
Metal
113 projects

Ban Russia from SWIFT! Protect Ukrainian Sky! Send NATO to Ukraine! #BanRussiafromSwift #CloseTheSky #SendNatoToUkraine

RosaKit

RosaKit - LibRosa port to Swift for iOS and macOS platforms.

Library can generate Mel-spectrogram using Short-time Fourier transform (STFT) algorithm.

It's provide methods for calcualte Short-time Fourier transform window and Spectrogram.

Installation

Via CocoaPods:

pod 'RosaKit'

Goals

  • Generate Spectrogram for visualisations

  • Preprocessing steps for most Machine Learning models in Sound Recognition Sphere

Original Project:

https://librosa.github.io

melspectrogram:

https://librosa.github.io/librosa/generated/librosa.feature.melspectrogram.html

Usage in swift

You can use such code:

let rawAudioData = Data(...)

let chunkSize = 66000
let chunkOfSamples = Array(rawAudioData[0..<chunkSize])    

let powerSpectrogram = samples.melspectrogram(nFFT: 1024, hopLength: 512, sampleRate: Int(sampleRate), melsCount: 128)

Results of processing:

Please look in Examples

Default Gauge

Used in Applications:

Decibel Meter:

https://apps.apple.com/app/decibel-meter/id1361845683?mt=12

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].