Socket
Socket
Sign inDemoInstall

@w6s/amr2mp3

Package Overview
Dependencies
20
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @w6s/amr2mp3

amr to mp3 nodeJS module


Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

amrToMp3

amr to mp3 nodeJS module

amr音频转mp3模块

Version License devDependencies devDependencies

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

Keywords

FAQs

Last updated on 16 Aug 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc