mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
29990765e7
* mobile: webrtc calls state machine * android: call api types * android: call api methods * ios: connect calls via chat UI (WIP) * ios: webrtc call connects via UI * core: update call duration/status when x.call.end is received * improve call UX/UI * audio calls * different overlay for audio calls * toggle video/audio in the call
14 lines
316 B
HTML
14 lines
316 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="./style.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<video id="remote-video-stream" autoplay playsinline></video>
|
|
<video id="local-video-stream" muted autoplay playsinline></video>
|
|
</body>
|
|
<footer>
|
|
<script src="./call.js"></script>
|
|
</footer>
|
|
</html>
|