mirror of
https://github.com/AlexxIT/go2rtc.git
synced 2025-10-07 17:21:34 +08:00
61 lines
1.8 KiB
HTML
61 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>go2rtc - WebRTC</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="out"></div>
|
|
<script>
|
|
const out = document.getElementById("out");
|
|
|
|
const print = (name, caps) => {
|
|
out.innerText += name + "\n";
|
|
caps.codecs.forEach((codec) => {
|
|
out.innerText += [codec.mimeType, codec.channels, codec.clockRate, codec.sdpFmtpLine] + "\n";
|
|
});
|
|
out.innerText += "\n";
|
|
}
|
|
|
|
if (RTCRtpReceiver.getCapabilities) {
|
|
print("receiver video", RTCRtpReceiver.getCapabilities("video"));
|
|
print("receiver audio", RTCRtpReceiver.getCapabilities("audio"));
|
|
print("sender video", RTCRtpSender.getCapabilities("video"));
|
|
print("sender audio", RTCRtpSender.getCapabilities("audio"));
|
|
}
|
|
|
|
const types = [
|
|
'video/mp4; codecs="avc1.42401E"',
|
|
'video/mp4; codecs="avc1.42C01E"',
|
|
'video/mp4; codecs="avc1.42E01E"',
|
|
'video/mp4; codecs="avc1.42001E"',
|
|
'video/mp4; codecs="avc1.4D401E"',
|
|
'video/mp4; codecs="avc1.4D001E"',
|
|
'video/mp4; codecs="avc1.640032"',
|
|
'video/mp4; codecs="avc1.640C32"',
|
|
'video/mp4; codecs="avc1.F4001F"',
|
|
'video/mp4; codecs="hvc1.1.6.L93.B0"',
|
|
'video/mp4; codecs="hev1.1.6.L93.B0"',
|
|
'video/mp4; codecs="hev1.2.4.L120.B0"',
|
|
];
|
|
|
|
const video = document.createElement("video");
|
|
out.innerText += "video.canPlayType\n";
|
|
types.forEach(type => {
|
|
out.innerText += type + "=" + (video.canPlayType(type) ? "true" : "false") + "\n";
|
|
})
|
|
|
|
</script>
|
|
</body>
|
|
</html> |