chrome浏览器录屏

阅读: 评论:0

getDisplayMedia

MediaRecorder

下载的视频格式一般播放器放不了!【vlc播放,或者使用ffmpeg转下码】

index.html文件如下:

<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta http-equiv="X-UA-Compatible" content="ie=edge">
	<title>Screen Record</title>
	<style>
		#video {
			border: 1px solid #999;
			width: 98%;
			max-width: 860px;
		}

		.error {
			color: red;
		}

		.warn {
			color: orange;
		}

		.info {
			color: darkgreen;
		}
	</style>
</head>

<body>
	<p> Start Capture  ->  Stop Capture -> download</p>
	<p>
		<button id="start">Start Capture</button>&nbsp;
		<button id="stop">Stop Capture</button>&nbsp;
		<button onclick="download()">download</button>
	</p>
	<video id="video" autoplay></video>
	<br>
	<strong>Log:</strong>
	<br>
	<pre id="log"></pre>
</body>
<script>
	let recordedBlobs
	let recorder
	const videoElem = ElementById("video");
	const logElem = ElementById("log");
	const startElem = ElementById("start");
	const stopElem = ElementById("stop");
	// Options for getDisplayMedia()
	const displayMediaOptions = {
		video: {
			cursor: "never"
		},
		audio: true
	};
	
	// Set event listeners for the start and stop buttons
	startElem.addEventListener("click", function (evt) {
		startCapture();
	}, false);
	
	stopElem.addEventListener("click", function (evt) {
		stopCapture();
	}, false);

	async function startCapture() {
		logElem.innerHTML = "";

		try {
			const stream = DisplayMedia(displayMediaOptions);
			videoElem.srcObject = stream;
			const chunks = [];
			
			recorder = new MediaRecorder(stream, { mimeType: "video/webm; codecs=vp9" });
			
			recorder.start();
			
			stop = event => {
				recordedBlobs = new Blob(chunks, {
					type: 'video/mp4',
					codecs: 'h264'
				});
			}
			
			dataavailable = event => {
				chunks.push(event.data);
			};

		} catch (err) {
			("Error: " + err);
		}
	}

	function stopCapture() {
		recorder.stop();
		console.info(videoElem.srcObject)
		let tracks = Tracks();
		console.info(tracks)
		tracks.forEach(track => track.stop());
		videoElem.srcObject = null;
		
	}

	function download() {
        stopCapture();
		const url = ateObjectURL(recordedBlobs);
		const a = ateElement('a');
		document.body.appendChild(a);
		a.style.display = 'none';
		a.href = url;
		a.download = 'test.mp4';
		a.click();
		vokeObjectURL(url);
	}
	
</script>

</html>

本文发布于:2025-03-21 23:19:00,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/1742570352582910.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:浏览器   chrome
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23