2.0.0 • Published 5 years ago

amrToMp3 v2.0.0

Weekly downloads
32
License
MIT
Repository
github
Last release
5 years 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.0

5 years ago

1.0.8

7 years ago

1.0.7

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.4

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago