Giter Club home page Giter Club logo

node-mp3-player's Introduction

node-mp3-player

A mp3 playing library which can play .mp3 audio from network and local for Node.js cli.

Installation

npm i @bhznjns/node-mp3-player

Example

import Player from "@bhznjns/node-mp3-player"

const player = new Player()
player.src = "http://audio.url"
player.volume = 0.5 // 0 ~ 1
await player.play()

setTimeout(() => {
    player.stop()
}, 5000)

setTimeout(() => {
    player.resume()
}, 10000)

player.onended = () => {
    player.src = "http://otheraudio.url"
    await player.play()
}

Usage

Import

// ESM
import Player from "@bhznjns/node-mp3-player"
// CJS
const { default: Player } = require("@bhznjns/node-mp3-player")

Play Audio from Network

const player = new Player()
// Equal to:
// const player = new Player({ mode: "network" })

player.src = "http://mp3audio.url"
await player.play()

// do something else ...

Play Audio from Local

const player = new Player({ mode: "local" })

player.src = "./audio.mp3"
await player.play()

// do something else ...

Volume Control

player.volume = 0.5 // Value is limited between 0 ~ 1

Stop & Resume

player.stop()

// resume after 5 seconds
setTimeout(() => {
    player.resume()
}, 5000)

Onended Handle

// after one audio end
player.onended = () => {
    // do something ...
}

// remove handler
player.onended = null

Dependencies

Possible Issues

Error: Cannot find module 'abc'

npm i abc

Error: the 2 AudioBuffers don't have the same sampleRate

This error is fixed.

This error will be thrown when some specific .mp3 audio is played and this error is thrown by the web-audio-api package, now the solution is unknown, but the "specific .mp3 audio" can be played overall.

node-mp3-player's People

Contributors

bhznjns avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.