FIXA-懒得写了

This commit is contained in:
CN-JS-HuiBai
2026-04-02 22:54:46 +08:00
parent 92e7a80a1e
commit 52c8466ddd
3 changed files with 89 additions and 28 deletions

View File

@@ -579,6 +579,10 @@ header p {
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
} }
.player-section {
position: relative;
}
.player-overlay h3 { .player-overlay h3 {
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
font-weight: 600; font-weight: 600;
@@ -590,7 +594,7 @@ header p {
} }
.now-playing { .now-playing {
margin-top: 1.5rem; margin-top: 2.5rem;
padding-top: 1.5rem; padding-top: 1.5rem;
border-top: 1px solid var(--panel-border); border-top: 1px solid var(--panel-border);
} }
@@ -609,11 +613,14 @@ header p {
} }
.custom-controls { .custom-controls {
margin-top: 0.9rem; position: relative;
z-index: 12;
margin: -5.75rem 1rem 0;
padding: 0.9rem 1rem; padding: 0.9rem 1rem;
border-radius: 14px; border-radius: 14px;
border: 1px solid var(--panel-border); border: 1px solid var(--panel-border);
background: rgba(15, 23, 42, 0.72); background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.86));
backdrop-filter: blur(10px);
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
@@ -627,7 +634,7 @@ header p {
.custom-controls.controls-faded, .custom-controls.controls-faded,
.custom-seek-container.controls-faded { .custom-seek-container.controls-faded {
opacity: 0; opacity: 0;
transform: translateY(8px); transform: translateY(12px);
pointer-events: none; pointer-events: none;
} }
@@ -989,6 +996,7 @@ header p {
.custom-controls { .custom-controls {
align-items: center; align-items: center;
margin: -6.25rem 0.75rem 0;
} }
.controls-left, .controls-left,

View File

@@ -110,6 +110,21 @@ document.addEventListener('DOMContentLoaded', () => {
} }
}; };
const createStreamSessionId = () => `${Date.now()}-${Math.random().toString(36).slice(2, 10)}`;
const buildStreamUrl = (targetSeconds = null) => {
const codec = codecSelect?.value || 'h264';
const encoder = encoderSelect?.value || 'software';
const streamSessionId = createStreamSessionId();
let streamUrl = `/api/stream?bucket=${encodeURIComponent(selectedBucket)}&key=${encodeURIComponent(selectedKey)}&codec=${encodeURIComponent(codec)}&encoder=${encodeURIComponent(encoder)}&streamSessionId=${encodeURIComponent(streamSessionId)}`;
if (typeof targetSeconds === 'number' && Number.isFinite(targetSeconds) && targetSeconds > 0) {
streamUrl += `&ss=${targetSeconds}`;
}
if (s3Username) streamUrl += `&username=${encodeURIComponent(s3Username)}`;
if (s3Password) streamUrl += `&password=${encodeURIComponent(s3Password)}`;
return streamUrl;
};
const updatePlayControls = () => { const updatePlayControls = () => {
if (controlPlayToggle) { if (controlPlayToggle) {
controlPlayToggle.textContent = videoPlayer.paused ? 'Play' : 'Pause'; controlPlayToggle.textContent = videoPlayer.paused ? 'Play' : 'Pause';
@@ -510,11 +525,7 @@ document.addEventListener('DOMContentLoaded', () => {
} }
// Build new stream URL with ss parameter // Build new stream URL with ss parameter
const codec = codecSelect?.value || 'h264'; const streamUrl = buildStreamUrl(targetSeconds);
const encoder = encoderSelect?.value || 'software';
let streamUrl = `/api/stream?bucket=${encodeURIComponent(selectedBucket)}&key=${encodeURIComponent(selectedKey)}&codec=${encodeURIComponent(codec)}&encoder=${encodeURIComponent(encoder)}&ss=${targetSeconds}`;
if (s3Username) streamUrl += `&username=${encodeURIComponent(s3Username)}`;
if (s3Password) streamUrl += `&password=${encodeURIComponent(s3Password)}`;
// Changing src automatically aborts the previous HTTP request, // Changing src automatically aborts the previous HTTP request,
// which triggers res.on('close') on the server, killing the old ffmpeg process // which triggers res.on('close') on the server, killing the old ffmpeg process
@@ -876,9 +887,7 @@ document.addEventListener('DOMContentLoaded', () => {
const codec = codecSelect?.value || 'h264'; const codec = codecSelect?.value || 'h264';
const encoder = encoderSelect?.value || 'software'; const encoder = encoderSelect?.value || 'software';
if (!selectedBucket) throw new Error('No bucket selected'); if (!selectedBucket) throw new Error('No bucket selected');
let streamUrl = `/api/stream?bucket=${encodeURIComponent(selectedBucket)}&key=${encodeURIComponent(selectedKey)}&codec=${encodeURIComponent(codec)}&encoder=${encodeURIComponent(encoder)}`; const streamUrl = buildStreamUrl();
if (s3Username) streamUrl += `&username=${encodeURIComponent(s3Username)}`;
if (s3Password) streamUrl += `&password=${encodeURIComponent(s3Password)}`;
videoPlayer.src = streamUrl; videoPlayer.src = streamUrl;
videoPlayer.load(); videoPlayer.load();
videoPlayer.addEventListener('loadedmetadata', () => { videoPlayer.addEventListener('loadedmetadata', () => {

View File

@@ -64,6 +64,8 @@ const wsSubscriptions = new Map();
const getProgressKey = (key) => key.split('/').map(segment => segment.replace(/[^a-zA-Z0-9_\-]/g, '_')).join('/'); const getProgressKey = (key) => key.split('/').map(segment => segment.replace(/[^a-zA-Z0-9_\-]/g, '_')).join('/');
const createStreamSessionId = () => `${Date.now()}-${Math.random().toString(36).slice(2, 10)}`;
const addWsClient = (progressKey, ws) => { const addWsClient = (progressKey, ws) => {
if (!wsSubscriptions.has(progressKey)) { if (!wsSubscriptions.has(progressKey)) {
wsSubscriptions.set(progressKey, new Set()); wsSubscriptions.set(progressKey, new Set());
@@ -187,26 +189,28 @@ const parseTimemarkToSeconds = (timemark) => {
}; };
const stopActiveTranscode = (progressKey) => { const stopActiveTranscode = (progressKey) => {
const activeCommand = transcodeProcesses.get(progressKey); const activeProcess = transcodeProcesses.get(progressKey);
if (!activeCommand) { if (!activeProcess?.command) {
return; return false;
} }
try { try {
if (typeof activeCommand.removeAllListeners === 'function') { if (typeof activeProcess.command.removeAllListeners === 'function') {
activeCommand.removeAllListeners('progress'); activeProcess.command.removeAllListeners('progress');
activeCommand.removeAllListeners('stderr'); activeProcess.command.removeAllListeners('stderr');
activeCommand.removeAllListeners('end'); activeProcess.command.removeAllListeners('end');
activeCommand.removeAllListeners('error'); activeProcess.command.removeAllListeners('error');
} }
if (typeof activeCommand.kill === 'function') { if (typeof activeProcess.command.kill === 'function') {
activeCommand.kill('SIGKILL'); activeProcess.command.kill('SIGKILL');
} }
} catch (killError) { } catch (killError) {
console.warn(`Failed to kill transcode process for ${progressKey}:`, killError); console.warn(`Failed to kill transcode process for ${progressKey}:`, killError);
} finally { } finally {
transcodeProcesses.delete(progressKey); transcodeProcesses.delete(progressKey);
} }
return true;
}; };
const extractS3Credentials = (req) => { const extractS3Credentials = (req) => {
@@ -376,6 +380,9 @@ app.get('/api/stream', async (req, res) => {
const codec = req.query.codec; const codec = req.query.codec;
const encoder = req.query.encoder; const encoder = req.query.encoder;
const startSeconds = parseFloat(req.query.ss) || 0; const startSeconds = parseFloat(req.query.ss) || 0;
const streamSessionId = typeof req.query.streamSessionId === 'string' && req.query.streamSessionId.trim()
? req.query.streamSessionId.trim()
: createStreamSessionId();
if (!bucket) { if (!bucket) {
return res.status(400).json({ error: 'Bucket name is required' }); return res.status(400).json({ error: 'Bucket name is required' });
@@ -405,7 +412,19 @@ app.get('/api/stream', async (req, res) => {
const s3Client = createS3Client(auth); const s3Client = createS3Client(auth);
try { try {
stopActiveTranscode(progressKey); const replacedExistingStream = stopActiveTranscode(progressKey);
if (replacedExistingStream && startSeconds > 0) {
progressMap[progressKey] = {
...(progressMap[progressKey] || {}),
status: 'transcoding',
percent: Math.min(Math.max(Math.round((startSeconds / Math.max(progressMap[progressKey]?.duration || startSeconds || 1, 1)) * 100), 0), 100),
startSeconds,
streamSessionId,
details: `Restarting transcode from ${startSeconds.toFixed(2)}s`,
mp4Url: null
};
broadcastWs(progressKey, { type: 'progress', key, progress: progressMap[progressKey] });
}
let totalBytes = 0; let totalBytes = 0;
let downloadedBytes = 0; let downloadedBytes = 0;
@@ -421,6 +440,7 @@ app.get('/api/stream', async (req, res) => {
percent: 0, percent: 0,
downloadedBytes: 0, downloadedBytes: 0,
totalBytes, totalBytes,
streamSessionId,
details: 'Downloading full source before streaming...', details: 'Downloading full source before streaming...',
mp4Url: null mp4Url: null
}; };
@@ -436,6 +456,7 @@ app.get('/api/stream', async (req, res) => {
percent, percent,
downloadedBytes, downloadedBytes,
totalBytes, totalBytes,
streamSessionId,
details: totalBytes ? `Downloading source ${percent}%` : 'Downloading source...', details: totalBytes ? `Downloading source ${percent}%` : 'Downloading source...',
mp4Url: null mp4Url: null
}; };
@@ -453,6 +474,7 @@ app.get('/api/stream', async (req, res) => {
percent: 100, percent: 100,
downloadedBytes, downloadedBytes,
totalBytes, totalBytes,
streamSessionId,
details: 'Source download complete, starting real-time transcode...', details: 'Source download complete, starting real-time transcode...',
mp4Url: null mp4Url: null
}; };
@@ -466,6 +488,7 @@ app.get('/api/stream', async (req, res) => {
percent: 100, percent: 100,
downloadedBytes, downloadedBytes,
totalBytes, totalBytes,
streamSessionId,
details: 'Source already downloaded locally, starting real-time transcode...', details: 'Source already downloaded locally, starting real-time transcode...',
mp4Url: null mp4Url: null
}; };
@@ -480,7 +503,8 @@ app.get('/api/stream', async (req, res) => {
const duration = metadata.format?.duration || 0; const duration = metadata.format?.duration || 0;
progressMap[progressKey] = { progressMap[progressKey] = {
...(progressMap[progressKey] || {}), ...(progressMap[progressKey] || {}),
duration: parseFloat(duration) || 0 duration: parseFloat(duration) || 0,
streamSessionId
}; };
broadcastWs(progressKey, { type: 'duration', key, duration: parseFloat(duration) }); broadcastWs(progressKey, { type: 'duration', key, duration: parseFloat(duration) });
} catch (probeErr) { } catch (probeErr) {
@@ -495,14 +519,19 @@ app.get('/api/stream', async (req, res) => {
const startStream = (encoderName) => { const startStream = (encoderName) => {
const streamingOptions = createFfmpegOptions(encoderName).concat(getSeekFriendlyOutputOptions(encoderName, sourceMetadata)); const streamingOptions = createFfmpegOptions(encoderName).concat(getSeekFriendlyOutputOptions(encoderName, sourceMetadata));
ffmpegCommand = ffmpeg(tmpInputPath) ffmpegCommand = ffmpeg()
.input(tmpInputPath)
.videoCodec(encoderName) .videoCodec(encoderName)
.audioCodec('aac') .audioCodec('aac')
.outputOptions(streamingOptions) .outputOptions(streamingOptions)
.format('mp4'); .format('mp4');
if (startSeconds > 0) { if (startSeconds > 0) {
ffmpegCommand.inputOptions(['-ss', startSeconds.toString()]); if (typeof ffmpegCommand.seekInput === 'function') {
ffmpegCommand.seekInput(startSeconds);
} else {
ffmpegCommand.inputOptions(['-ss', startSeconds.toString()]);
}
} }
if (/_vaapi$/.test(encoderName)) { if (/_vaapi$/.test(encoderName)) {
@@ -511,10 +540,13 @@ app.get('/api/stream', async (req, res) => {
.videoFilters('format=nv12,hwupload'); .videoFilters('format=nv12,hwupload');
} }
transcodeProcesses.set(progressKey, ffmpegCommand); transcodeProcesses.set(progressKey, { command: ffmpegCommand, streamSessionId });
ffmpegCommand ffmpegCommand
.on('progress', (progress) => { .on('progress', (progress) => {
if (transcodeProcesses.get(progressKey)?.streamSessionId !== streamSessionId) {
return;
}
const effectiveDuration = Math.max(0, (progressMap[progressKey]?.duration || 0) - startSeconds); const effectiveDuration = Math.max(0, (progressMap[progressKey]?.duration || 0) - startSeconds);
const timemarkSeconds = parseTimemarkToSeconds(progress.timemark || '0'); const timemarkSeconds = parseTimemarkToSeconds(progress.timemark || '0');
const absoluteSeconds = startSeconds + (isFinite(timemarkSeconds) ? timemarkSeconds : 0); const absoluteSeconds = startSeconds + (isFinite(timemarkSeconds) ? timemarkSeconds : 0);
@@ -531,6 +563,7 @@ app.get('/api/stream', async (req, res) => {
absoluteSeconds, absoluteSeconds,
duration: progressMap[progressKey]?.duration || null, duration: progressMap[progressKey]?.duration || null,
startSeconds, startSeconds,
streamSessionId,
details: `Streaming transcode ${percent}%`, details: `Streaming transcode ${percent}%`,
mp4Url: null mp4Url: null
}; };
@@ -538,27 +571,38 @@ app.get('/api/stream', async (req, res) => {
broadcastWs(progressKey, { type: 'progress', key, progress: progressState }); broadcastWs(progressKey, { type: 'progress', key, progress: progressState });
}) })
.on('stderr', (stderrLine) => { .on('stderr', (stderrLine) => {
if (transcodeProcesses.get(progressKey)?.streamSessionId !== streamSessionId) {
return;
}
console.log(`ffmpeg stderr: ${stderrLine}`); console.log(`ffmpeg stderr: ${stderrLine}`);
}) })
.on('end', () => { .on('end', () => {
if (transcodeProcesses.get(progressKey)?.streamSessionId !== streamSessionId) {
return;
}
transcodeProcesses.delete(progressKey); transcodeProcesses.delete(progressKey);
progressMap[progressKey] = { progressMap[progressKey] = {
status: 'finished', status: 'finished',
percent: 100, percent: 100,
duration: progressMap[progressKey]?.duration || null, duration: progressMap[progressKey]?.duration || null,
startSeconds, startSeconds,
streamSessionId,
details: 'Streaming transcode complete', details: 'Streaming transcode complete',
mp4Url: null mp4Url: null
}; };
broadcastWs(progressKey, { type: 'progress', key, progress: progressMap[progressKey] }); broadcastWs(progressKey, { type: 'progress', key, progress: progressMap[progressKey] });
}) })
.on('error', (err) => { .on('error', (err) => {
if (transcodeProcesses.get(progressKey)?.streamSessionId !== streamSessionId) {
return;
}
transcodeProcesses.delete(progressKey); transcodeProcesses.delete(progressKey);
const failedState = { const failedState = {
status: 'failed', status: 'failed',
percent: progressMap[progressKey]?.percent || 0, percent: progressMap[progressKey]?.percent || 0,
duration: progressMap[progressKey]?.duration || null, duration: progressMap[progressKey]?.duration || null,
startSeconds, startSeconds,
streamSessionId,
details: err.message || 'Streaming transcode failed', details: err.message || 'Streaming transcode failed',
mp4Url: null mp4Url: null
}; };
@@ -580,7 +624,7 @@ app.get('/api/stream', async (req, res) => {
ffmpegCommand.kill('SIGKILL'); ffmpegCommand.kill('SIGKILL');
} catch (_) {} } catch (_) {}
} }
if (transcodeProcesses.get(progressKey) === ffmpegCommand) { if (transcodeProcesses.get(progressKey)?.streamSessionId === streamSessionId) {
transcodeProcesses.delete(progressKey); transcodeProcesses.delete(progressKey);
} }
}); });