How to develop a music streaming website using PHP [closed]
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 y开发者_开发技巧ears ago.
Improve this questionI am about to start a Music Streaming website. I want to provide users to play songs online. So how to start
- Where should i store all the music files for faster streaming
- How to play audio songs on my website
- For playing a audio file is there any other PROTOCOL to follow ?
- Is there any frameworks are there ?
Please guide me
Thank You
- Look to store the files on Amazon S3. It's by far your most cost effective option. http://aws.amazon.com/s3/
- Use flash http://wpaudioplayer.com/ or html5 audio tag http://www.w3schools.com/HTML/html5_audio.asp
- Just use http.
- See #1 and #2
- If you don't mind paying for the transfer, store all of the files using a cloud storage service. There are many options, to name a few: Amazon S3, Rackspace Cloud Storage, even Google is launching its own storage solution.
- The easiest way to do this is with a flash player that are freely available through open-source solutions. One of the more popular player is the JW Player - available at http://www.longtailvideo.com/
- Playing audio can happen as mentioned above in the player or through the new HTML5 audio tags. You have multiple choices here.
- There are no frameworks for building this exact type of app you've described. But there are a number of PHP frameworks out there. Check out Cake PHP, Zend, and CodeIgniter to get started.
Best of luck!
use flash for audio playbacks. protocol - http is enough
精彩评论