Files
go2rtc/www/links.html
T
2026-03-21 13:48:25 +03:00

549 lines
20 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links - go2rtc</title>
<style>
.page-header {
margin-bottom: 20px;
}
.page-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 4px;
}
.stream-name {
color: var(--text-secondary);
font-size: 13px;
word-break: break-all;
}
.section {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
}
.section-title {
font-size: 15px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 12px;
display: flex;
align-items: center;
gap: 6px;
}
.link-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
}
.link-item {
display: flex;
align-items: flex-start;
padding: 10px;
background: var(--bg-secondary);
border-radius: 6px;
border: 1px solid var(--border-color);
flex-wrap: wrap;
word-break: break-word;
gap: 8px;
}
.link-item a {
font-weight: 500;
word-break: break-all;
max-width: 100%;
}
.link-description {
color: var(--text-secondary);
font-size: 13px;
}
.code-block {
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 12px;
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
font-size: 13px;
color: var(--text-primary);
overflow-x: auto;
margin-top: 10px;
word-break: break-all;
white-space: pre-wrap;
}
.form-group {
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 12px;
}
.radio-group {
display: flex;
flex-direction: column;
gap: 6px;
}
.radio-label {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 10px;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 6px;
cursor: pointer;
transition: border-color 0.15s;
font-size: 13px;
}
.radio-label:hover {
border-color: var(--accent);
}
.radio-label input[type="radio"] {
accent-color: var(--accent);
}
.input-group {
display: flex;
gap: 8px;
align-items: center;
}
.input-group input[type="text"] {
flex: 1;
}
.action-links {
display: flex;
gap: 8px;
margin-top: 8px;
}
.action-link {
padding: 6px 12px;
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 6px;
font-size: 13px;
transition: border-color 0.15s;
}
.action-link:hover {
border-color: var(--accent);
text-decoration: none;
}
.action-link.delete {
color: var(--red);
}
.action-link.delete:hover {
border-color: var(--red);
}
#homekit-qrcode {
margin-top: 12px;
padding: 12px;
background: white;
display: inline-block;
border-radius: 6px;
}
.note {
color: var(--text-muted);
font-size: 12px;
font-style: italic;
}
@media (max-width: 768px) {
.input-group {
flex-direction: column;
}
.action-links {
flex-direction: column;
}
}
</style>
</head>
<body>
<script src="main.js"></script>
<main>
<div class="container">
<a href="index.html" class="back-link">← Back to Streams</a>
<div class="page-header">
<h1 class="page-title">Stream Links</h1>
<div class="stream-name">Stream: <span id="stream-name"></span></div>
</div>
<div id="links"></div>
<div id="homekit" class="section" style="display: none">
<h2 class="section-title">HomeKit Server</h2>
</div>
<div class="section">
<h2 class="section-title">Play Audio</h2>
<div class="form-group">
<div class="radio-group">
<label class="radio-label">
<input type="radio" name="play" value="file" checked>
<span><strong>File</strong> - Play remote (https://example.com/song.mp3) or local (/media/song.mp3) file</span>
</label>
<label class="radio-label">
<input type="radio" name="play" value="live">
<span><strong>Live</strong> - Play remote live stream (radio, etc.)</span>
</label>
<label class="radio-label">
<input type="radio" name="play" value="text">
<span><strong>Text</strong> - Play Text To Speech (if your FFmpeg supports this)</span>
</label>
</div>
<div class="input-group">
<input id="play-url" type="text" placeholder="Enter path / url / text">
<button id="play-send">Send</button>
</div>
<div class="note">For cameras with two-way audio support</div>
</div>
</div>
<div class="section">
<h2 class="section-title">Publish Stream</h2>
<div class="code-block">YouTube: rtmps://xxx.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx-xxxx
Telegram: rtmps://xxx-x.rtmp.t.me/s/xxxxxxxxxx:xxxxxxxxxxxxxxxxxxxxxx</div>
<div class="form-group">
<div class="input-group">
<input id="pub-url" type="text" placeholder="Enter RTMPS URL">
<button id="pub-send">Send</button>
</div>
<div class="note">Publish to YouTube, Telegram RTMPS server, etc.</div>
</div>
</div>
<div id="webrtc" class="section">
<h2 class="section-title">WebRTC</h2>
<div class="form-group">
<div class="radio-group">
<label class="radio-label">
<input type="radio" name="webrtc" value="video+audio" checked>
<span><strong>Video + Audio</strong> - Simple viewer</span>
</label>
<label class="radio-label">
<input type="radio" name="webrtc" value="video+audio+microphone">
<span><strong>Video + Audio + Microphone</strong> - Two-way audio from camera</span>
</label>
<label class="radio-label">
<input type="radio" name="webrtc" value="camera+microphone">
<span><strong>Camera + Microphone</strong> - Stream from browser</span>
</label>
<label class="radio-label">
<input type="radio" name="webrtc" value="display+speaker">
<span><strong>Display + Speaker</strong> - Broadcast software</span>
</label>
</div>
<ul class="link-list">
<li class="link-item">
<a id="local" href="webrtc.html?src=">Local WebRTC viewer</a>
</li>
<li class="link-item">
<span class="link-description">External WebRTC viewer:</span>
<div class="action-links">
<a id="shareadd" href="#" class="action-link">Share Link</a>
<a id="shareget" href="#" class="action-link" style="display:none">Copy Link</a>
<a id="sharedel" href="#" class="action-link delete" style="display:none">Delete</a>
</div>
</li>
</ul>
</div>
</div>
</div>
</main>
<script>
const src = new URLSearchParams(location.search).get('src').replace(/[<">]/g, ''); // sanitize
document.getElementById('stream-name').textContent = src;
const links = document.getElementById('links');
links.innerHTML = `
<div class="section">
<h2 class="section-title">Any Codec in Source</h2>
<ul class="link-list">
<li class="link-item">
<a href="stream.html?src=${src}">stream.html</a>
<span class="link-description">Auto-select mode / Browsers: All / Codecs: H264, H265*, MJPEG, JPEG, AAC, PCMU, PCMA, OPUS</span>
</li>
<li class="link-item">
<a href="api/streams?src=${src}">info.json</a>
<span class="link-description">Active connections info</span>
</li>
</ul>
</div>
`;
const url = new URL('api', location.href);
fetch(url, {cache: 'no-cache'}).then(r => r.json()).then(data => {
let rtsp = location.host + ':8554';
try {
const host = data.host.match(/^[^:]+/)[0];
const port = data.rtsp.listen.match(/[0-9]+$/)[0];
rtsp = `${host}:${port}`;
} catch (e) {
}
links.innerHTML += `
<div class="section">
<h2 class="section-title">RTSP Streaming</h2>
<ul class="link-list">
<li class="link-item">
<a href="rtsp://${rtsp}/${src}">rtsp://${rtsp}/${src}</a>
<span class="link-description">One video + one audio / Codecs: Any</span>
</li>
<li class="link-item">
<a href="rtsp://${rtsp}/${src}?mp4">rtsp://${rtsp}/${src}?mp4</a>
<span class="link-description">For MP4 recording (Hass, Frigate) / Codecs: H264, H265, AAC</span>
</li>
<li class="link-item">
<a href="rtsp://${rtsp}/${src}?video=all&audio=all">rtsp://${rtsp}/${src}?video=all&audio=all</a>
<span class="link-description">All tracks / Codecs: Any</span>
</li>
</ul>
<div class="code-block">ffplay -fflags nobuffer -flags low_delay -rtsp_transport tcp "rtsp://${rtsp}/${src}"</div>
</div>
<div class="section">
<h2 class="section-title">H264/H265 Source</h2>
<ul class="link-list">
<li class="link-item">
<a href="stream.html?src=${src}&mode=webrtc">WebRTC stream</a>
<span class="link-description">Browsers: All / Codecs: H264, PCMU, PCMA, OPUS / +H265 in Safari</span>
</li>
<li class="link-item">
<a href="stream.html?src=${src}&mode=mse">MSE stream</a>
<span class="link-description">Browsers: Chrome, Firefox, Safari Mac/iPad / Codecs: H264, H265*, AAC, PCMA*, PCMU*, PCM* / +OPUS in Chrome/Firefox</span>
</li>
<li class="link-item">
<a href="stream.html?src=${src}&mode=webcodecs">WebCodecs stream</a>
<span class="link-description">Browsers: Chrome, Edge, Firefox, Safari Mac/iPad / Codecs: H264, H265, AAC, OPUS, PCMA, PCMU</span>
</li>
<li class="link-item">
<a href="api/stream.mp4?src=${src}">stream.mp4 (legacy AAC)</a>
<span class="link-description">Browsers: Chrome, Firefox / Codecs: H264, H265*, AAC</span>
</li>
<li class="link-item">
<a href="api/stream.mp4?src=${src}&mp4=flac">stream.mp4 (modern FLAC)</a>
<span class="link-description">Browsers: Chrome, Firefox / Codecs: H264, H265*, AAC, FLAC (PCMA, PCMU, PCM)</span>
</li>
<li class="link-item">
<a href="api/stream.mp4?src=${src}&mp4=all">stream.mp4 (all audio)</a>
<span class="link-description">Browsers: Chrome / Codecs: H264, H265*, AAC, OPUS, MP3, FLAC (PCMA, PCMU, PCM)</span>
</li>
<li class="link-item">
<a href="api/frame.mp4?src=${src}">frame.mp4</a>
<span class="link-description">Snapshot in MP4 format / Browsers: All / Codecs: H264, H265*</span>
</li>
<li class="link-item">
<a href="api/stream.m3u8?src=${src}">stream.m3u8 (legacy HLS/TS)</a>
<span class="link-description">Browsers: Safari all, Chrome Android / Codecs: H264</span>
</li>
<li class="link-item">
<a href="api/stream.m3u8?src=${src}&mp4">stream.m3u8 (legacy HLS/fMP4)</a>
<span class="link-description">Browsers: Safari all, Chrome Android / Codecs: H264, H265*, AAC</span>
</li>
<li class="link-item">
<a href="api/stream.m3u8?src=${src}&mp4=flac">stream.m3u8 (modern HLS/fMP4)</a>
<span class="link-description">Browsers: Safari all, Chrome Android / Codecs: H264, H265*, AAC, FLAC (PCMA, PCMU, PCM)</span>
</li>
</ul>
</div>
<div class="section">
<h2 class="section-title">MJPEG Source</h2>
<ul class="link-list">
<li class="link-item">
<a href="stream.html?src=${src}&mode=mjpeg">stream.html (MJPEG)</a>
<span class="link-description">Browsers: All / Codecs: MJPEG, JPEG</span>
</li>
<li class="link-item">
<a href="api/stream.mjpeg?src=${src}">stream.mjpeg</a>
<span class="link-description">MJPEG stream / Browsers: All / Codecs: MJPEG, JPEG</span>
</li>
<li class="link-item">
<a href="api/stream.webp?src=${src}">stream.webp</a>
<span class="link-description">Motion-WebP stream / Browsers: All modern / Codecs: MJPEG, JPEG</span>
</li>
<li class="link-item">
<a href="api/frame.jpeg?src=${src}">frame.jpeg</a>
<span class="link-description">Snapshot in JPEG format / Browsers: All / Codecs: MJPEG, JPEG</span>
</li>
<li class="link-item">
<a href="api/frame.webp?src=${src}">frame.webp</a>
<span class="link-description">Snapshot in WebP format / Browsers: All modern / Codecs: H264, H265, MJPEG, JPEG</span>
</li>
</ul>
</div>
`;
});
// HomeKit section
fetch(`api/homekit?id=${src}`, {cache: 'no-cache'}).then(async (r) => {
if (!r.ok) return;
const div = document.querySelector('#homekit');
div.innerHTML += `<ul class="link-list"><li class="link-item"><a href="${r.url}">info.json</a><span class="link-description">Active connections</span></li></ul>`;
div.style.display = 'block';
const data = await r.json();
if (data.setup_code === undefined) return;
const script = document.createElement('script');
script.src = 'https://cdn.jsdelivr.net/npm/qrcodejs@1.0.0/qrcode.min.js';
script.async = true;
script.onload = () => {
const categoryID = BigInt(data.category_id);
const pin = BigInt(data.setup_code.replaceAll('-', ''));
const payload = categoryID << BigInt(31) | BigInt(2 << 27) | pin;
const setupURI = `X-HM://${payload.toString(36).toUpperCase().padStart(9, '0')}${data.setup_id}`;
div.innerHTML += `<div class="code-block">Setup Name: ${data.name}
Setup Code: ${data.setup_code}</div>
<div id="homekit-qrcode"></div>`;
new QRCode('homekit-qrcode', {text: setupURI, width: 128, height: 128});
};
document.head.appendChild(script);
});
// Play audio
document.getElementById('play-send').addEventListener('click', ev => {
ev.preventDefault();
const action = document.querySelector('input[name="play"]:checked').value;
const url = new URL('api/ffmpeg', location.href);
url.searchParams.set('dst', src);
url.searchParams.set(action, document.getElementById('play-url').value);
fetch(url, {method: 'POST'});
});
// Publish stream
document.getElementById('pub-send').addEventListener('click', ev => {
ev.preventDefault();
const url = new URL('api/streams', location.href);
url.searchParams.set('src', src);
url.searchParams.set('dst', document.getElementById('pub-url').value);
fetch(url, {method: 'POST'});
});
// Read-only mode
const applyReadOnly = () => {
const ids = ['play-send', 'play-url', 'pub-send', 'pub-url'];
ids.forEach(id => {
const el = document.getElementById(id);
if (el) el.disabled = true;
});
};
if (window.go2rtcReady) {
window.go2rtcReady.then(data => {
if (data && data.read_only) applyReadOnly();
});
}
// WebRTC functions
function webrtcLinksUpdate() {
const media = document.querySelector('input[name="webrtc"]:checked').value;
const direction = media.indexOf('video') >= 0 || media === 'audio' ? 'src' : 'dst';
document.getElementById('local').href = `webrtc.html?${direction}=${src}&media=${media}`;
const share = document.getElementById('shareget');
share.href = `https://go2rtc.org/webtorrent/#${share.dataset.auth}&media=${media}`;
}
function share(method) {
const url = new URL('api/webtorrent', location.href);
url.searchParams.set('src', src);
return fetch(url, {method: method, cache: 'no-cache'});
}
function onshareadd(r) {
document.getElementById('shareget').dataset['auth'] = `share=${r.share}&pwd=${r.pwd}`;
document.getElementById('shareadd').style.display = 'none';
document.getElementById('shareget').style.display = '';
document.getElementById('sharedel').style.display = '';
webrtcLinksUpdate();
}
function onsharedel() {
document.getElementById('shareadd').style.display = '';
document.getElementById('shareget').style.display = 'none';
document.getElementById('sharedel').style.display = 'none';
}
function copyTextToClipboard(text) {
if (navigator.clipboard && window.isSecureContext) {
navigator.clipboard.writeText(text).catch(err => {
console.error(err.name, err.message);
});
} else {
const textarea = document.createElement('textarea');
textarea.value = text;
textarea.style.opacity = '0';
document.body.appendChild(textarea);
textarea.focus();
textarea.select();
try {
document.execCommand('copy');
} catch (err) {
console.error(err.name, err.message);
}
document.body.removeChild(textarea);
}
}
document.getElementById('shareadd').addEventListener('click', ev => {
ev.preventDefault();
share('POST').then(r => r.json()).then(r => onshareadd(r));
});
document.getElementById('shareget').addEventListener('click', ev => {
ev.preventDefault();
copyTextToClipboard(ev.target.href);
});
document.getElementById('sharedel').addEventListener('click', ev => {
ev.preventDefault();
share('DELETE').then(() => onsharedel());
});
document.getElementById('webrtc').addEventListener('click', ev => {
if (ev.target.tagName === 'INPUT') webrtcLinksUpdate();
});
share('GET').then(r => {
if (r.ok) r.json().then(r => onshareadd(r));
else onsharedel();
});
webrtcLinksUpdate();
</script>
</body>
</html>