Skip to content

Instantly share code, notes, and snippets.

@UnitedWithCode
Forked from larryyangsen/download.js
Created September 7, 2022 10:55
Show Gist options
  • Save UnitedWithCode/aa9ea4973baedfa2b9be5fbc7aba8b95 to your computer and use it in GitHub Desktop.
Save UnitedWithCode/aa9ea4973baedfa2b9be5fbc7aba8b95 to your computer and use it in GitHub Desktop.
axios download audio file
const { data } = await axios.get(url, {
responseType: 'arraybuffer',
headers: {
'Content-Type': 'audio/wav'
}
});
const blob = new Blob([data], {
type: 'audio/wav'
});
const url = URL.createObjectURL(blob);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment