1.3.0 • Published 6 years ago

playerui v1.3.0

Weekly downloads
89
License
MIT
Repository
github
Last release
6 years ago

playerui

minimalistic mediaplayer commandline ui.

sample

var playerui = require('playerui');

// Initialize UI object
var ui = playerui();

// add some labels
ui.setLabel('source', 'Source', 'Ty Segall - Manipulator (Album)');
ui.setLabel('state', 'Playing', 'Playing...');
ui.setLabel('position', 'Position', '10:00 / 50:00');

// specify which labels to show
ui.showLabels('source', 'state', 'position');

// set progress bar to 20%
ui.setProgress(20);

// output
ui.render();

The above code will render this into the commandline

Example UI

Installation

npm install playerui

License

Copyright (c) 2014 Simon Kusterer Licensed under the MIT license.