All Projects → Binaryify → Amrtomp3

Binaryify / Amrtomp3

Licence: mit
amr转mp3模块 amr to mp3 module

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Amrtomp3

Archiso Pbp
archiso customized for the Pinebook Pro
Stars: ✭ 52 (-23.53%)
Mutual labels:  arm
Checkmate
Checkmate MP3 Checker is a free program that checks MP3 files for errors.
Stars: ✭ 61 (-10.29%)
Mutual labels:  mp3
Webrtc apm
webrtc中apm相关代码的提取,包括AEC/NS/AGC/VAD ,另外还包括mp3/aac编码器、SoundTouch
Stars: ✭ 65 (-4.41%)
Mutual labels:  mp3
Ncnn Android Styletransfer
The style transfer android example
Stars: ✭ 54 (-20.59%)
Mutual labels:  arm
React Mp3 Recorder
Microphone recorder for React that captures mp3 audio 🎵
Stars: ✭ 59 (-13.24%)
Mutual labels:  mp3
Iot camera
IoT Camera with Wi-Fi, RT-Thread
Stars: ✭ 62 (-8.82%)
Mutual labels:  arm
Raspberrypi tempmon
Raspberry pi CPU temperature monitor with many functions such as logging, GPIO output, graphing, email, alarm, notifications and stress testing. Python 3.
Stars: ✭ 52 (-23.53%)
Mutual labels:  arm
Toboot
Bootloader for the EFM32HG Tomu Board
Stars: ✭ 65 (-4.41%)
Mutual labels:  arm
Cluster
Arm and Equinix Metal have partnered to make powerful Neoverse based Armv8 bare metal infrastructure including latest generation Ampere and Marvell systems — available for open source software developers to build, test and optimize for Arm64 architecture.
Stars: ✭ 60 (-11.76%)
Mutual labels:  arm
Java Lame
Native Java port of the LAME library.
Stars: ✭ 64 (-5.88%)
Mutual labels:  mp3
Docker Multi Arch Example
TL;DR reference for building multi-arch Docker images
Stars: ✭ 56 (-17.65%)
Mutual labels:  arm
Fancyss
fancyss is a project providing tools to across the GFW on asuswrt/merlin based router.
Stars: ✭ 9,112 (+13300%)
Mutual labels:  arm
Shadow Box For Arm
Shadow-Box: Lightweight and Practical Kernel Protector for ARM (Presented at BlackHat Asia 2018)
Stars: ✭ 64 (-5.88%)
Mutual labels:  arm
Mylinux
myLinux is a small UNIX like OS for embedded systems based on Westermo NetBox
Stars: ✭ 53 (-22.06%)
Mutual labels:  arm
Stm32l4xx Hal
A Hardware abstraction layer for the stm32l432xx series chips written in rust.
Stars: ✭ 65 (-4.41%)
Mutual labels:  arm
Dockerpi
A Virtualised Raspberry Pi inside a Docker image
Stars: ✭ 1,064 (+1464.71%)
Mutual labels:  arm
Javascript Media Recorder
WebRTC video recorder library for Javascript
Stars: ✭ 61 (-10.29%)
Mutual labels:  mp3
Mabalgs
👤 Multi-Armed Bandit Algorithms Library (MAB) 👮
Stars: ✭ 67 (-1.47%)
Mutual labels:  arm
Spotivy
🎼 Download music videos from Spotify playlists
Stars: ✭ 64 (-5.88%)
Mutual labels:  mp3
Qtools
QTools collection of open source tools for embedded systems development on Windows, Linux and MacOS
Stars: ✭ 64 (-5.88%)
Mutual labels:  arm

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