I want to add audio to my JavaFX project in Replit. Is there a way to use a public accessible URL link that references an .mp3 file in order to play audio?
For example, the following allows me to include an image only using a URL without having to reference a file:
Image image= new Image("https://cdn.discordapp.com/attachments/952426047645843537/954119846046629928/play3.png");
Is something similar possible for audio files?