Currently I'm trying to record H264 video with Flash Player 11 to Wowza 3. I am trying to publish the stream using the ‘netstream.publish(“mp4:"+streamId). When I do that, Wowza creates the file but it is unplayable.

Can anybody please provide help regarding the above issue?

Thanks in advance,

link|improve this question
feedback

1 Answer

Set the correct audio codec

Not sure if this helps - but you have to make sure to not use mp3 as audio-code. Use speex instead:

import flash.media.Microphone;
import flash.media.SoundCodec;

and

microphone = Microphone.getMicrophone();
microphone.codec = SoundCodec.SPEEX;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.