0
有誰知道這是可能的嗎?將兩個不同視頻的兩個剪輯合併到一個帶有javascript(客戶端)的視頻中?
我發現最接近的事我所尋找的是這樣的:http://bgrins.github.io/videoconverter.js/
但「文檔」是很小的。
有誰知道這是可能的嗎?將兩個不同視頻的兩個剪輯合併到一個帶有javascript(客戶端)的視頻中?
我發現最接近的事我所尋找的是這樣的:http://bgrins.github.io/videoconverter.js/
但「文檔」是很小的。
您可以在一個視頻元素
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>
你所說的 「結合」 是指加2個視頻嗎? – guest271314