作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
再次需要帮助
我使用 Webpack 并且我有音频文件,这是我加载它的方式:
const file = require('@/assets/filename.mp3')
const blob = new Blob(file) // it doesn't work
现在我需要从中获取 Blob。我不明白该怎么做。
而最终的目标是获取audioBuffer
感谢您的任何回答🙏
最佳答案
使用 Fetch API 从服务器请求文件。然后将其读作 ArrayBuffer
并将其解码为 AudioBuffer
通过使用 BaseAudioContext.decodeAudioData()
方法。
/**
* Get a file, read it as an ArrayBuffer and decode it an AudioBuffer.
* @param {string} file
* @returns {Promise<AudioBuffer>}
*/
const fetchAudioBuffer = async file => {
const audioContext = new AudioContext();
try {
const response = await fetch(file);
const arrayBuffer = await response.arrayBuffer();
return audioContext.decodeAudioData(arrayBuffer);
} catch (error) {
console.error(error);
}
};
// Fetch the file and decode it as an AudioBuffer.
fetchAudioBuffer('path/to/assets/filename.mp3').then(audioBuffer => {
// Use your audioBuffer here.
});
关于javascript - 如何在 NodeJS 中使用 require 从本地文件创建 Blob?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70483150/
我是一名优秀的程序员,十分优秀!