node.js 中 mp3 文件的 Content-Type 是啥?

Posted

技术标签:

【中文标题】node.js 中 mp3 文件的 Content-Type 是啥?【英文标题】:What is the Content-Type for mp3 files in node.js?node.js 中 mp3 文件的 Content-Type 是什么? 【发布时间】:2020-05-11 15:09:11 【问题描述】:

我正在尝试使用 node.js 'http' 模块编写 Web 服务器。谁能告诉我 mp3/音频文件的“Content-Type”标头值是什么?例如:

response.writeHead(200, "OK", "Content-Type": "audio/mp3");

我希望我能很好地解释自己。谢谢

【问题讨论】:

【参考方案1】:

audio/mpeg

我通常搜索mime types 以找出应该作为文件的Content-Type 标头发送的内容。

--更新--

阅读更多关于 Mime-Types 的信息,实际上我们将“mime-type”作为文件的 Content-Type 标头发送。

【讨论】:

以上是关于node.js 中 mp3 文件的 Content-Type 是啥?的主要内容,如果未能解决你的问题,请参考以下文章

使用 node js 实时流式传输 MP3 文件

具有增益控制的 node.js 中的 Mp3 音频

如何更新json文件中的值并通过node.js保存

如何使用 node.js 和 socket.io 通过 WebSockets 流式传输 MP3 数据?

mime模块响应或设置Node.js的Content-Type头

在 node.js 中计算 Content-length 标头的正确方法是啥