replicate/replicate-javascript

[MusicGen] Cannot get MP3

Closed this issue · 0 comments

I’m using the code below to get the buffer from the URL returned in the response (MusicGen) (https://replicate.delivery/yhqm/6qeYFuueorg8eIu3G6BdDM4lMhRPNutBldYfh5VDYnC2wxZPB/out.mp3). However, it doesn’t work.

import fetch from 'node-fetch';

export const getBufferFromUrl = async (url) => {
  return await (await fetch(url)).buffer();
};

I tried copying the URL and opening it in Arc, but it couldn’t open the file. However, it works fine in Chrome.

ARC

Screenshot 2024-12-01 at 15 18 10

Chrome

Screenshot 2024-12-01 at 15 18 03