Skip to content

HTML5 media sequenced playback API: play one or multiple sequences of a same audio or video with plain JavaScript.

License

Notifications You must be signed in to change notification settings

bbc/media-sequence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

media-sequence

HTML5 media sequenced playback API: play one or multiple sequences of a same audio or video with plain JavaScript.

Installation

npm bower old school
npm install --save media-sequence bower install --save media-sequence download zip file

Usage

var sequences = [{start: 0, end: 5}, {start: 12, end: 13}, {start: 21, end: 31}];
var sequencer = new MediaSequence(new Audio('path/to/audio.ogg'), sequences);

sequencer.playAll();

API

new MediaSequence(el, sequences)

sequencer.add(sequences)

Adds new sequences to the actual stack.

var sequencer = new MediaSequence(new Audio('path/to/audio.ogg'));

sequencer.add([{ start: 0, end: 10 }, { start: 3, end: 6}]);
sequencer.add([{ start: 11, end: 12 }]);

sequencer.playAll()

Starts the playback of all the sequences in a row.

sequencer.playFrom(start, end)

Starts the playback from a start time and stops automatically at an end time.

var sequencer = new MediaSequence(new Audio('path/to/audio.ogg'));

sequencer.playFrom(10, 12); // will play from 10 seconds to 12 seconds

sequencer.playNext()

Plays the next consecutive sequence based on the current playback time.

var el = new Audio('path/to/audio.ogg');
var sequencer = new MediaSequence(el, sequences);

el.currentTime = 12;
sequencer.playNext(); // will play the next sequence starting after 12 seconds

sequencer.getNext(referenceTime, options)

Returns the next sequence from a referenceTime numbered value.

var ms = new MediaSequencer(, [{ start: 3, end: 5 }, { start: 12, end: 13 }]);

ms.getNext(0);
// { start: 3, end: 5 }

ms.getNext(3);
// { start: 12, end: 13 }

If the options.overlap value is set to true, the returned sequence is allowed to overlap:

var ms = new MediaSequencer(, [{ start: 3, end: 5 }, {start: 3, end: 10 }, { start: 12, end: 13 }]);

ms.getNext(3);
// { start: 12, end: 13 }

ms.getNext(3, { overlap: true });
// {start: 3, end: 5 }

Licence

Copyright 2014 British Broadcasting Corporation

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

HTML5 media sequenced playback API: play one or multiple sequences of a same audio or video with plain JavaScript.

Resources

License

Stars

Watchers

Forks

Packages

No packages published