-
-
Save UnitedWithCode/aa9ea4973baedfa2b9be5fbc7aba8b95 to your computer and use it in GitHub Desktop.
axios download audio file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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