gpt4 book ai didi

javascript - 具有快进/快退功能的流式 mp3 文件 express 服务器

转载 作者:行者123 更新时间:2023-12-02 20:27:46 24 4
gpt4 key购买 nike

我有一个小型 express 服务器,可以下载或流式传输 mp3 文件,如下所示:

const express = require('express');
const fs = require('fs');
const app = express();

app.use('/mp3', express.static(__dirname + '/mp3'));

app.get('/', (req, res) => {
res.sendFile(__dirname + '/index.html');
});

app.get('/stream', (req, res) => {
const file = __dirname + '/mp3/trololol.mp3';
fs.exists(file, (exists) => {
if (exists) {
const rstream = fs.createReadStream(file);
rstream.pipe(res);
} else {
res.send('Error - 404');
res.end();
}
});
});

app.get('/download', (req, res) => {
const file = __dirname + '/mp3/trololol.mp3';
res.download(file);
});

app.listen(3000, () => console.log('Example app listening on port 3000!'));

html:

<audio controls="controls">
<source src="http://localhost:3000/stream" type="audio/ogg" />
<source src="http://localhost:3000/stream" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>

这可行,但是,音频流不会倒带或快进。我是否必须更改请求 header 中的某些内容才能允许这种情况发生?也许我需要设置范围并添加开始和结束时间或其他内容。任何提示将不胜感激。谢谢。

最佳答案

找到答案 here .

const express = require('express'),
bodyParser = require('body-parser'),
path = require('path'),
fs = require('fs'),
app = express();

// app.use('/mp3', express.static(__dirname + '/mp3'));

app.get('/', (req, res) => {
res.sendFile(__dirname + '/index.html');
});

app.get('/stream', (req, res) => {
const file = __dirname + '/mp3/trololol.mp3';
const stat = fs.statSync(file);
const total = stat.size;
if (req.headers.range) {

}
fs.exists(file, (exists) => {
if (exists) {
const range = req.headers.range;
const parts = range.replace(/bytes=/, '').split('-');
const partialStart = parts[0];
const partialEnd = parts[1];

const start = parseInt(partialStart, 10);
const end = partialEnd ? parseInt(partialEnd, 10) : total - 1;
const chunksize = (end - start) + 1;
const rstream = fs.createReadStream(file, {start: start, end: end});

res.writeHead(206, {
'Content-Range': 'bytes ' + start + '-' + end + '/' + total,
'Accept-Ranges': 'bytes', 'Content-Length': chunksize,
'Content-Type': 'audio/mpeg'
});
rstream.pipe(res);

} else {
res.send('Error - 404');
res.end();
// res.writeHead(200, { 'Content-Length': total, 'Content-Type': 'audio/mpeg' });
// fs.createReadStream(path).pipe(res);
}
});
});

app.get('/download', (req, res) => {
const file = __dirname + '/mp3/trololol.mp3';
res.download(file);
});

app.listen(3000, () => console.log('Example app listening on port 3000!'));

关于javascript - 具有快进/快退功能的流式 mp3 文件 express 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49524238/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com