GithubHelp home page GithubHelp logo

ye-man / lrcplayer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from andersonjoseph/lrcplayer

0.0 2.0 1.0 7 KB

A .lrc runner written in JavaScript (NodeJS) that works like a music player.

JavaScript 100.00%

lrcplayer's Introduction

LrcPlayer

A .lrc runner written in JavaScript (NodeJS) that works like a music player.

Usage

const fs = require('fs');
const LrcPlayer = require('./lrcplayer');

const lrc = fs.readFileSync('./hey-jude.lrc').toString();

const myPlayer = new LrcPlayer(lrc);
myPlayer.on('lrc', (line) => {
  console.log(line);
});

myPlayer.play();

Documentation

LrcPlayer โ‡ EventEmitter

The .lrc player

Kind: global class

new LrcPlayer(lrcFile)

Creates a new .lrc player

Param Type Description
lrcFile string the .lrc file to run

lrcPlayer.play()

Start player

Kind: instance method of LrcPlayer

lrcPlayer.pause()

Pause player

Kind: instance method of LrcPlayer

lrcPlayer.stop()

Stop player

Kind: instance method of LrcPlayer

lrcPlayer.jumpTo(newTime)

Jump to new time

Kind: instance method of LrcPlayer

Param Type Description
newTime string | number the new time to jump in. In miliseconds or time string (01:20.00)

Events

lrcPlayer.on('lrc', cb(line, time))

Event when player streams lyrics

myPlayer.on('lrc', function(line, time) {
    console.log(line);
});

lrcPlayer.on('play', cb(time))

Event when player starts

myPlayer.on('play', function(time) {
    console.log('Player started at: ' + time);
});

*similar:

lrcPlayer.on('stop', cb(time))

lrcPlayer.on('pause', cb(time))

lrcplayer's People

Contributors

andersonjoseph avatar

Watchers

 avatar  avatar

Forkers

dr-aryone

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.