Giter Club home page Giter Club logo

pcm-player's Introduction

PCM Player

A minimalist javascript audio player for PCM streaming data for the browsers.

How to use?

var player = new PCMPlayer(option);

Available options are:

encoding - possible values 8bitInt / 16bitInt / 32bitInt / 32bitFloat default: 16bitInt

channels - no of channels in PCM data

sampleRate - sample rate of the PCM data

flushingTime - flushing interval of PCM data to be played in milisecond. Default 1000ms

Decoder fire an event decode whenever it completes decoding. Usually it decodes several opus packet at a time for better performance although it need to be provided single opus packet into decode method.

Complete example:

var player = new PCMPlayer({
    encoding: '16bitInt',
    channels: 2,
    sampleRate: 8000,
    flushingTime: 2000
});

// Now feed PCM data into player getting from websocket or ajax whatever the transport you are using.
player.feed(pcm_data);

Available Methods

Name Parameter Remark
feed raw PCM data Usually get from ajax or websocket
volume decimal value 0 to 1 For controlling volume of the player
destroy - Destroy the player instance and release the resources

Compatibility

it is supported on:

  • Chrome for Android 34+
  • Chrome for Desktop 34+
  • Firefox for Android 41+
  • Firefox for Desktop 42+
  • IE11+ for Windows 8.1+
  • Edge for Windows 10+
  • Opera for Desktop
  • Safari for Mac 8+
  • Safari for iOS 8+

How to run example?

An example with simple node server script is available that include some raw pcm data that will be served by websocket and at the client end, it will be played through PCM player. For running the example, first run the node server by following command: (I am assuming you are on project directory i.e pcm-player)

cd example/server

node server.js

then, visit example/index.html page through any webserver.

If you don't have any web server, you can do following:

(I am assuming you are on project directory i.e pcm-player)

npm install http-server -g

then run following command

http-server

Finally visit example page using URL http://192.168.0.105:8081/example/index.html OR URL suggested by http-server

pcm-player's People

Contributors

samirkumardas avatar shaders 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.