Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 866 Bytes

README.md

File metadata and controls

44 lines (32 loc) · 866 Bytes

WaveParser

WaveParser is fluently library for wave file read/write.

Feature plan

  • Read Wave File Information
  • Write to Wave File [] validate wave file

How to Setup

Step1. Add Mavel Repository in your build.gradle

repositories {
    maven {
        url 'http://fumiya-kume.github.io/WaveParser/repository'
    }
}

Step2. Add reference in your app/build.gradle

// Wave Parser Library
// Replace specific version
implementation "kuu.nagoya.waveparser:core:0.0.5"
// Extension for AudioRecord
implementation "kuu.nagoya.waveparser:audiorecord:0.0.5"

How to use

import kuu.nagoya.waveparser.WaveModel
---
// You can access wave file inforamtion, a.k.a data, samplingRate, number of chnnel
WaveModel.loadFromFile("/path/to/anyone/")

// load from storage
WaveModel.loadFromFile("path/to/anyone)