|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>AR с HTML</title> |
| 7 | + <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script> |
| 8 | + <script src="https://rawgit.com/jeromeetienne/AR.js/master/aframe/build/aframe-ar.js"></script> |
| 9 | + <script src="/socket.io/socket.io.js"></script> |
| 10 | +</head> |
| 11 | +<body> |
| 12 | + <a-scene embedded arjs> |
| 13 | + <!-- Видео --> |
| 14 | + <video id="video" autoplay loop src="http://localhost:8080/video.mp4" crossorigin="anonymous"></video> |
| 15 | + <a-assets> |
| 16 | + <!-- Видео для текстуры --> |
| 17 | + <video id="screenStream" autoplay></video> |
| 18 | + </a-assets> |
| 19 | + |
| 20 | + <!-- Маркер с кубом --> |
| 21 | + <a-marker preset="hiro"> |
| 22 | + <a-box position="0 0.5 0" material="src: #video;"></a-box> <!-- Указываем, что видео будет текстурой --> |
| 23 | + </a-marker> |
| 24 | + |
| 25 | + <!-- Камера --> |
| 26 | + <a-entity camera></a-entity> |
| 27 | + </a-scene> |
| 28 | + |
| 29 | + <script> |
| 30 | + const socket = io.connect('http://localhost:3000'); |
| 31 | + let peerConnection; |
| 32 | + const config = { iceServers: [{ urls: 'stun:stun.l.google.com:19302' }] }; |
| 33 | + |
| 34 | + const videoElement = document.getElementById('screenStream'); |
| 35 | + |
| 36 | + peerConnection = new RTCPeerConnection(config); |
| 37 | + peerConnection.ontrack = (event) => { |
| 38 | + videoElement.srcObject = event.streams[0]; |
| 39 | + }; |
| 40 | + |
| 41 | + peerConnection.onicecandidate = (event) => { |
| 42 | + if (event.candidate) { |
| 43 | + socket.emit('signal', { target: 'TARGET_ID', signal: { candidate: event.candidate } }); |
| 44 | + } |
| 45 | + }; |
| 46 | + |
| 47 | + socket.on('signal', async (data) => { |
| 48 | + if (data.signal.sdp) { |
| 49 | + await peerConnection.setRemoteDescription(new RTCSessionDescription(data.signal.sdp)); |
| 50 | + if (data.signal.sdp.type === 'offer') { |
| 51 | + const answer = await peerConnection.createAnswer(); |
| 52 | + await peerConnection.setLocalDescription(answer); |
| 53 | + socket.emit('signal', { target: data.from, signal: { sdp: answer } }); |
| 54 | + } |
| 55 | + } |
| 56 | + if (data.signal.candidate) { |
| 57 | + await peerConnection.addIceCandidate(new RTCIceCandidate(data.signal.candidate)); |
| 58 | + } |
| 59 | + }); |
| 60 | + </script> |
| 61 | + |
| 62 | + <script> |
| 63 | + document.querySelector('a-scene').addEventListener('click', function () { |
| 64 | + const video = document.getElementById('video'); |
| 65 | + video.play(); |
| 66 | + }); |
| 67 | + </script> |
| 68 | +</body> |
| 69 | +</html> |
0 commit comments