This code is working fine for playing '.mp3' and '.wav' file, but it's not supporting '.ulaw' format. I went through several plugins but it didn't help me. Is there any way to run the '.ulaw' audio, or convert '.ulaw' to other formats?
Below 'src' is path to ulaw audio
<audio
ref={ref}
src={src}
controls
onPlay={() => setPlaying(true)}
onPause={() => setPlaying(false)}
onTimeUpdate={onTimeUpdate}
/>