Playing ogg audio files in react
I’m working on a React front-end, that needs to play audio files. I’ve got a backend service that give me ogg
audio files that originate from WhatsApp conversations. The is played well in android browsers / desktop chrome but not in Safari, on which its not supported. I only found really complex setups that do not work well with react, and require web workers and wasm
for the decoding.(like this and this). These answers are “valid” But I could not find a (relatively) simple way to achieve this, and more React-ish way.