{
await ffmpeg.load()
const files = ffmpeg.ls('.')
const target = file.name.split('.')[0] + '.mp3'
if (files.includes(target)) await ffmpeg.remove(target)
await ffmpeg.write(file.name, file.arrayBuffer())
await ffmpeg.run(`-i "${file.name}" "${target}"`)
return ffmpeg.ls('.')
}