0
私は非同期のビデオ録画をサポートする必要があるアプリケーションを実装しています。私はZiggeoを探索し始めました。クールなのはWebRTCをサポートしていて、以下はクイックスタートアプリケーションです。 ChromeとFFではすべて正常に動作しますが、Operaでは次のエラーが表示されますCould not read video file
ステータスコード412、このエラーの原因は何ですか?これはZiggeo上のJS SDKの最新リリースで解決されZiggeo、WebRTCビデオファイルを読み取ることができませんでした
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="//assets-cdn.ziggeo.com/v1-stable/ziggeo.css" />
</head>
<body>
<button onclick="startVideoRecording()">Start video</button>
<div id="video">
</div>
<script src="//assets-cdn.ziggeo.com/v1-stable/ziggeo.js"></script>
<script>ZiggeoApi.token = "MY-TOKEN-IS-HERE";</script>
<script>ZiggeoApi.Config.cdn = true;</script>
<script>ZiggeoApi.Config.webrtc = true;</script>
<script>
function startVideoRecording() {
console.log('recording');
recorder = ZiggeoApi.Embed.embed('#video', {
limit: 15,
width: 770,
height: 557,
});
}
</script>
</body>
</html>