AbdBarho
AbdBarho
I managed to reproduce reliably on my machine with this snippet, not sure if it is only my machine or what: ```js import { playAudioFile } from "audic"; playAudioFile("not.mp3"); setTimeout(()...
@Richienb using your `vlc` library directly solves the problem for me (ignore ugly nesting): ```js import createVlc from "@richienb/vlc"; const vlc = await createVlc(); const play = () => vlc.command("in_play",...
I do see the value of using the frontend id, since the frontend for the time being is the central service where all accounts are stored (without duplicates) If we...