Free audio players for website streaming - javascript

Are there any free audio players that I can use in my website? Are they customizable?
I've heard of Soundmanager 2. It's a flash based player with a javascript front-end.
Are there any other free players like that?

If you'd like something that doesn't require loading a Flash plugin, try jPlayer. It uses HTML 5 when the browser supports it.

I like this one. Simple to use and nice looking.

Related

Stencyl game output, HTML5 or Flash player

i'm making a little web game for work, first time using Stencyl. No mobile support needed, it's a desktop only web game. Stencyl doesn't let me publish to HTML5 though, so I tried doing it old-school, exporting a .swf, but this isn't ideal either because of scalability & such. I'm no HTML wizzkid, so just looking if someone knows how to export to HTML from Stencyl, and otherwise an alternative. Many thanks, friends :)

Streaming audio via html5/js (a la radio)?

Is there a library or technique out there that will let me embed a streamed audio source in a webpage? I've seen other SO answers recommending audio.js for similar requests, but it looks like that will only let you pick a single audio file.
While I guess I could put a bunch of effort into making a file-like audio stream, I feel like there has to be a better way to go about this.
Looks like the best thing for the job is one of the use-cases of jPlayer; will update if problems crop up or something better rears its head.

Service for recording (camera or screenrecord) directly in browser

I'm creating a service and want to implement a way for the users to easily record a video and upload it directly in the browser. I've looked into Wowza and red5. It would probably be easiest if the video would go straight to their server for perfomance. Does anyone have any experience with either one of them, or even more so, have any other alternatives that would work? I'm building the site in Django, but I'm somewhat afraid of hosting the whole service on my own service considering the performance.
Thanks.
Take a look at this article. It explains how to capture audio and video with HTML5 only. However, the browser support for this is horrible. The best and easiest way in my opinion is to make a own app with AS3 and PHP. It's fairly easy to do and gives you the best options for customization.
Building such app in AS3 (Flash) and using Wowza as a backend is simple enough.
I personally participated in such projects.

How to stream videos using HTML5 and Javascript

I want to make a site that streams live media over the net incorporating a web player built in HMTL5. I have read about the Microsoft's Media Streaming Platform and SWf of Microsoftfor streaming media but all of it went over the head.
Is there any one true way of streaming videos without using any plugins like Flash but in simple HTML5 and JS.
I have asked this question a lot of time here before but every time it was unanswered. Please help me.
Thank you.
Can you try http://www.videojs.com/ It's pretty easy to implement.

Sounds for my javascript game with pure js?

Is it possible to play a sound in my javascript game without using anything like flash or a HTML workaround?
When I searched google it gave me various plugins or ways of doing it with flash, but I'd like to do it with pure js, while being able to play many sounds parallel.
The HTML5 <audio> element has fairly decent support, and there's also an audio API (which allows advanced audio manipulation) lagging somewhat behind.
There's even a tutorial on using it in a JS game.

Categories