views:

91

answers:

1

Hi, I am developing a desktop application in Adobe AIR that will be used to stream the user's camera video to a wowza media server. I want to encode the video on the fly, means transmit the H.264 encoded video instead of the default flash player encoded video for quality purpose. Is there any way around for this?

Waiting for the help from people around,

Rick

+1  A: 

H.264 encoding is usually done in Native Code C or C++ because it is a cpu intensive set of algorithms. The source code for x264 can give you an idea of the code required but it is a tough read if you start from scratch.

Here is a book to get you started or you can read the original AVC standard if you suffer from insomnia.

renick