0.3.17 • Published 5 years ago

simplemedia v0.3.17

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

Node.js CI FOSSA Status

Prerequisites

on Ubuntu

apt install libavformat-dev libavcodec-dev libavutil-dev libswscale-dev libsdl2-dev

on macOS

brew install ffmpeg sdl2

You may need to install cmake-js and typescript

npm i -g cmake-js
npm i -g typescript

Install

npm i simplemedia

Example

See example/

const {Window, MediaPlayer} = require('simplemedia');


let window = new Window({
  title: "simplemedia nodejs",
  width: 640,
  height: 480,
});
let renderer = window.createRenderer();

let player = new MediaPlayer({
  renderer: renderer,
  trace: true,
});
player.datasource = media_uri;
player.prepare().then(resolve => {
  console.log('duration: ' + player.duration);
  player.start();
}).catch(err => {
  console.log(err);
});

player.onend = (() => {
  console.log('end-of-stream!');
});

readAndDispatch();

(Optional) Native only build

cd native;
mkdir build; cd build
cmake .. && make

You'll probably get a binary named mediaplayer try to run it with a media file

./mediaplayer /path/to/file

License

FOSSA Status

0.3.17

5 years ago

0.3.16

5 years ago

0.3.14

5 years ago

0.3.13

5 years ago

0.3.11

5 years ago

0.3.9

5 years ago

0.3.10

5 years ago

0.3.8

5 years ago

0.3.5

5 years ago

0.3.4

5 years ago

0.3.3

5 years ago

0.3.2

5 years ago

0.3.0

5 years ago

0.3.1

5 years ago

0.2.14

5 years ago

0.2.13

5 years ago

0.2.12

5 years ago

0.2.11

5 years ago

0.2.9

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.0

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.3

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago

0.0.13

5 years ago

0.0.14

5 years ago

0.0.15

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago