javascript - Syncing Audio With Video -


i have little problem syncing audio track video, problem when seeking, when video not buffered, audio still play heres code

        var video_preview = document.getelementbyid("video-preview");         var song_preview = document.getelementbyid("song");         video_preview.onplay = function() {             song_preview.currenttime = video_preview.currenttime;             song_preview.play();         };          video_preview.onpause = function() {            video_preview.pause();            song_preview.pause();         };          video_preview.onseeking = function() {             song_preview.currenttime = video_preview.currenttime;             song_preview.play();         }; 


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -