how did someone get a mp3 file onto a file?
Hi @Pencil! You just need to upload your file to Glitch’s assets and then wget the URL on the terminal like this:
$ wget <asset_url>
Be sure to remove the
?v=
part on the url
it didn’t work as the numbers after the ?v= part and the varibles are undefined sadly
maybe i should remove the numbers after the v but i dont know what to do with the // as it makes it invisable
wget is an error and is unexpected
all i have is
var music1 = $ wget https://cdn.glitch.global/a3587077-854f-41a7-8399-504773cd0c20/AUD-20220802-WA0004.mp3
var music2 = $ wget https://cdn.glitch.global/a3587077-854f-41a7-8399-504773cd0c20/AUD-20220802-WA0004.mp3
var music3 = $ wget https://cdn.glitch.global/a3587077-854f-41a7-8399-504773cd0c20/AUD-20220802-WA0004.mp3
music1.onplay = function() {
music2.pause();
music3.pause();
};
music2.onplay = function() {
music1.pause();
music3.pause();
};
music3.onplay = function() {
music1.pause();
music2.pause();
}
No! Sorry I din’t explain myself well.
First, you need to open the terminal, and, for each audio file, type:
wget <audio_file_url>
(then, press enter)
After you’ve done this, type:
refresh
And the audio files will magically appear on your file browser!
Oh Ill TRy
That’s strange… Can you give me the audio URL please?
Ok Here Is The Music
The Music
(also nice auth login its good for my game that im putting this music in)
Try going to the terminal and typing:
wget https://cdn.glitch.global/a3587077-854f-41a7-8399-504773cd0c20/AUD-20220802-WA0004.mp3
and then:
refresh
to see your files
Thanks Your a life saver
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.