gpt4 book ai didi

javascript - 如何在 NodeJS 中使用 require 从本地文件创建 Blob?

转载 作者:行者123 更新时间:2023-12-05 04:39:02 26 4
gpt4 key购买 nike

再次需要帮助

我使用 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/

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