Does anyone know of a program that works seamlessly with Glide that could support a very large amount (thousands) of audio files with a .mp3 format link?
I’m currently using Google Drive with publicly accessible sharing options and beginning with “https” (I’ve tried “http” as well), but since the format is not a supporting .mp3 link, I get an “error” message in all of my audio components in my app.
I’m really not sure what to do now. Any help is much appreciated!
You could store them pretty much anywhere as long as the allow direct linking. I used Amazon S3 storage initially for the app I wrote but then changed to just storing them in Glide when they came out with the ability to upload any file. Any of the podcasting hosts would work as well. Libsyn is just one of dozens https://libsyn.com/ , but has been recommended to me by a podcaster that has been doing it for over 10 years with 800 episodes.
Thanks for the suggestions, George.
If I’m understanding your comment correctly, then Google Drive should be working. I am direct linking, everything is public, I’ve tried https and http. Nothing is resolving the error code.
No Google drive and Dropbox do not work, they don’t give you direct .mp3 links. There links are sort of to a player that uses their own internal player as I understand it.
@blairrorani@George_B Dropbox does indeed work. However, I have over 4,000 audio files and copying and pasting each individual file will take months. Dropbox does not support a mass link export. At least not in their professional account.
Thanks to you both for helping me get at least this far!
Maybe store them in a GitHub repo? Then you can “know” what the link to each file will be as it’s just a file path (e.g. your-repo.com/folder/name-of.mp3) The work would just be in generating the paths in the sheet which is easy enough using some concatenation I assume (e.g. “https://path-to-mp3/” + [file-name] + “.mp3” where the file name is in another column that you’re referencing, something like that). Note, that isn’t the correct syntax, just abstracting what you’d be aiming to do in the sheet.
When you get to the point where they tell you to copy your website files into the directory that was created, copy a few of your audio files. I would suggest you create a subdirectory. I create one called resources/audios/. After you publish them you can access them via links that look like this:
The beauty of this is that pushing files to your github repository is a snap. If you are not familiar with git or github you will need to do a little learning but in my opinion this as very good promise. I have no idea if any costs if you exceed some kind of storage or bandwidth thresholds. And since it is Public anyone with knowledge of the links would have full access to download any of the audios. If that is an issue this may not be the solution.
@Robert_Petitto I do think that Cloudinary is an extraordinary tool and resource, but it does have a cost when you exceed the free tier of storage and bandwidth. As long as you are aware of that and are prepared to spend the dollars if your needs warrant the expenditure, it clearly is pretty darn amazing.
Yeah…looking to see how fast it takes me to get to the paid tier. Been using it straight for the past three days and I’m only using 2% of my quota, but I’m not storing hours worth of audio/video in the platform either.