2.0.2 • Published 9 months ago

@w6s/amr2mp3 v2.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

amrToMp3

amr to mp3 nodeJS module

amr音频转mp3模块

Installation

This module is installed via npm:

$ npm install amrToMp3

api

amrToMp3(sourcePath[,outputPath, outputName])  //outputPath default:./src/mp3/

usage

js

const amrToMp3 = require('amrToMp3')
amrToMp3('src/amr/test.amr')
  .then(function (data) {
    console.log(data)  // ./src/mp3/test.mp3
    //...some code
  })
  .catch(function (err) {
    console.log(err)
  })

or

const amrToMp3 = require('amrToMp3')
const data = await amrToMp3('src/amr/test.amr') // ./src/mp3/test.mp3
console.log(data)

support

  • 64 bit Mac OSX
  • 64 bit Linux
  • 32 bit Linux
  • 64 bit Windows
  • 32 bit Windows

test

$ npm test

build

$ npm run build
2.0.2

9 months ago

2.0.1

12 months ago

2.0.0

12 months ago