0.15.0 • Published 5 years ago

xraudioplayer v0.15.0

Weekly downloads
25
License
ISC
Repository
github
Last release
5 years ago

XRAudioPlayer

for emily

an audio player for web XR experiences and distributed applications

The XRAudioPlayer is a subset of the experimental XRMediaPlayer object. The latter is going to be under heavy development as of the end of this week given the start of the winter term (expected release: February 2, 2019).

XRAudioPlayer as the name suggests generates an audio player that users can experience in VR, AR, or traditional flat modes. Experiences at their core use Three.js/AFrame to achieve a secure, cross-platform standard for immersive web experiences.

Users can view content using a wide range of devices and formats. Developers can implement the module in both modular server-side and non-modular client-side applications with just a few lines of JavaScript code.

Usage:

Server-side

Client-side

Server-Side

  1. install using npm
npm install xraudioplayer
  1. import xraudioplayer (using require is recommended: not all releases of Node have the newest ES6 features enabled by default)

    (a) using add method

var myPlayer= require('xraudioplayer');

myPlayer.add('../media/img/OracularSpectacular.png', '../media/audio/TheYouth.mp3' , { title: 'The Youth', author: 'MGMT', year: 2007});

myPlayer.add('../media/img/ExtraFine.png', '../media/audio/ExtraFine.mp3', { title: 'Extra Fine', author: 'Starmaker', year: 2019});

myPlayer.spawn();

(b) using addFromList method

an object or array of objects in the following format can be processed by the module to generate same outcome as above

var myPlayer= require('xraudioplayer');

var collection = {
    'The Youth': {
        coverURL: '../media/audio/TheYouth.png',
        audioURL: '../media/audio/TheYouth.mp3',
        {
            title: 'The Youth',
            author: 'MGMT',
            year: 2007
        }
    },
    'Extra Fine': {
        coverURL: '../media/audio/ExtraFine.png',
        audioURL: '../media/audio/ExtraFine.mp3',
        {
            title: 'Extra Fine',
            author: 'Starmaker',
            year: 2019
        }
    }
};

myPlayer.addFromList(collection);
myPlayer.spawn();

Client-Side

  1. download the boilerplate or make your own test directory
  2. move to the app.js or index.js level of the directory and create a test.js file
  3. implement as follows:
var myPlayer = new XRAudioPlayer();
myPlayer.build();

myPlayer.add('../media/img/OracularSpectacular.png', '../media/audio/TheYouth.mp3' , { title: 'The Youth', author: 'MGMT', year: 2007});

coreEventListeners.launch([myPlayer]);

Full API

propertytypedescription
typestringshort paragraph descriptor of type property
socketobjectshort paragraph descriptor of socket object
hellomethodshort paragraph descriptor of hello method
buildCoreMarkupmethodshort paragraph descriptor of buildCoreMarkup method
spawnmethodshort paragraph descriptor of spawn method
assetsContainerobjectshort paragraph descriptor of assetContainer object
buildmethodshort paragraph descriptor of build method
addmethodshort paragraph descriptor of add method
addFromListmethodshort paragraph descriptor of addFromList method
showTrackListmethodshort paragraph descriptor of showTrackList method
playNextTrackmethodshort paragraph descriptor of playNextTrack method
playPreviousTrackmethodshort paragraph descriptor of playPreviousTrack method
streammethodshort paragraph descriptor of type method
applicationobjectshort paragraph descriptor of type object
viewstringshort paragraph descriptor of type property
XRSettingstringshort paragraph descriptor of type property
0.15.0

5 years ago

0.14.0

5 years ago

0.13.1

5 years ago

0.12.30

5 years ago

0.1.1

5 years ago

0.12.25

5 years ago

0.12.19

5 years ago

0.12.18

5 years ago