Custom audio encoder for flash player - actionscript-3

It seems like the only option for recording h264/aac videos with flash is to use Wowza and use the aac transcoder. What options are there for encoding aac audio right inside flash player before sending through the Netstream? Would be possible to extract raw audio from a Microphone by listening to the SampleDataEvent, encoding that audio how you want, then sending it through the Netstream with the send method? Would you have to manually rejoin the audio with the video then?

Not sure it will do exactly what you want, but you could check out FlashyWrappers which allows you to encode video in Flash.

Related

HTML5 RTP Audio Stream

I currently have a setup where VLC player is playing live audio via an RTP stream coming from my server. Is it at all possible that HTML5 <audio> tag can play this stream instead?

Embed RTSP Stream into Browser

I have an IP Camera that only has an address locally: XXX.XXX.X.XX.
This camera has an rtsp stream and I want to integrate that stream into HTML5's video tag. Unfortunately, it only accepts mp4, ogg and web. What should I do now?
Note that I do not want to use a plugin!

How to detect framerate from video playing on video tag?

Is there any way I can detect via javascript what is the framerate from the video referenced in the video html5 tag?
I'm also looking for bitrate and codec information since html5 video player is codec agnostic.
thanks
The FPS is stored in the metadata of the video file's header.
Here is an implementation API of what you are looking for: https://github.com/X3TechnologyGroup/VideoFrame
http://jsfiddle.net/Ck6Zq/184/

HTML5 video streaming - download

I read that the HTML5 video tag can't stream video...
By streaming i mean the possibility to download a video only from the middle of it and not from the beginning.
Apparently you can set the currentTime to the middle but in the background it will download all the movie.
On the other hand YouTube's HTML5 player seems to stream just fine.
What is it that I am missing?
Thanks...

Web audio player for M4a

i am playing mp3 file in my web with google player :
http://www.google.com/reader/ui/3523697345-audio-player.swf
and i can't playing m4a files with this player too.
there is any way to play m4a files with this player too? or there is another player to play m4a files in my browser?
this is how i am using the player:
<embed type=\"application/x-shockwave-flash\" flashvars=\"audioUrl=songUrl&autoPlay=true\" src=\"http://www.google.com/reader/ui/3523697345-audio-player.swf\" width=\"400\" height=\"27\" quality=\"best\"></embed>
According to this, this is a bit of a complex issue: Flash (the technology your audio player, and most others on the web currently, is based on) is able to play MPEG-4 content, but only when declaring the content video, not audio. Why this is, I have no idea.
You may be able to play M4A sound files if you can find a Flash video player that suits your needs. Alternatively, consider using HTML 5 Audio.
Update: jPlayer, a jQuery/Flash/HTML5-Based audio player, claims to be able to play MPEG-4 Audio content. You should be able to use that.