0.1.6 • Published 5 years ago

fat-mp3 v0.1.6

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

fat-mp3

Play an MP3 from a file or directly from a HTTP stream through your speakers.

Basic usage

const fmp3 = require("fat-mp3");

// Play an MP3 from a file.
const filePlayer = new fmp3("test.mp3");
filePlayer.play();

// Pause it after ten seconds.
setTimeout(() => {
	player.pause(() => {
		console.log("Pause complete callback fired!");
	});
}, 10000);

// Play an MP3 file over HTTP.
const hPlayer = new fmp3("http://somesite.com/test.mp3");
hPlayer.play();

More detailed features

Begin buffering over HTTP in the background before playing

const fmp3 = require("fat-mp3");
const hPlayer = new fmp3("http://somesite.com/test.mp3");
hPlayer.on("error", (err) => {
	console.log("An error occurred.");
	console.error(err);
});
hPlayer.startBuffering();

// Let the player buffer for thirty seconds before playback begins.
setTimeout(() => {
	hPlayer.play();
}, 30000);
0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago