I've been researching all over the web but haven't found any conclusive answer to this so thought I'd ask the stackoverflow community.
I have an HTML(5) page which is supposed to get the following functionality:
- Video "timeline" (no editing, but user can add one video after another and reorder the videos within this timeline)
- Separate audio tracks (music/effects, not synced speech) can be added to this space and should play alongside the arrangement of videos.
The entire 'timeline' of videos can be considered as one long clip, and the audio should play alongside the entire length of the timeline, not per track.
A 3 min timeline consisting of 3x 1min clips would need a matching 3min audio clip or if the audio clip is shorter it should start looping after it finishes.
From my research I gather than any of this stuff using HTML5/JS would require either support for @mediagroup
or audioTracks
(though the latter doesn't really address the issues around multiple videos that are playing as one timeline).
The project's browser requirements are: IE9 and up, Chrome, Firefox, iPad.
Is this stuff even possible today?
If it is, any ideas on how to implement this would be much appreciated.