2017-05-19 6 views
0

이것이 가능한지 아는 사람 있습니까? http://bgrins.github.io/videoconverter.js/두 개의 서로 다른 비디오의 클립 두 개를 자바 스크립트 (클라이언트 측)를 사용하여 하나의 비디오로 결합 하시겠습니까?

그러나 "문서는"아주 최소한 있습니다

I가 발견 가장 가까운 것은 내가 무엇을 찾고 있어요 것은 이것이다.

+1

는 "결합"무엇을 의미합니까 2 개 비디오를 추가 할 수 있습니까? – guest271314

답변

0

당신은 하나 개의 비디오 요소

var myvid = document.getElementById('myvideo'); 
 
var myvids = [ 
 
    "http://www.w3schools.com/html/mov_bbb.mp4", 
 
    "http://www.w3schools.com/html/movie.mp4" 
 
    ]; 
 
var activeVideo = 0; 
 

 
myvid.addEventListener('ended', function(e) { 
 
    // update the new active video index 
 
    activeVideo = (++activeVideo) % myvids.length; 
 

 
    // update the video source and play 
 
    myvid.src = myvids[activeVideo]; 
 
    myvid.play(); 
 
});
<video src="http://www.w3schools.com/html/mov_bbb.mp4" id="myvideo" width="320" height="240" controls style="background:black"> 
 
</video>