Will recording mic audio in mp3 codec be supported by FMS in the future

I am newbb to flash. I am developping a mobile app for video chat using FL3. Then I realized that FL3.x only support mp3 streaming for now. So I turn to the server side and found that FMS3.5.1 doesn't support record or live mic audio in mp3. This causes a quite difficult situation. I am wondring if there's a solution/workaround for this? And mostly importantly, I am wondering if recording mic audio in mp3 is ever going to be supported. If anyone can answer this.

Hi Bob,
Regarding "when will flashplayer support mp3 encoding" ...
Jay's lowdown is 100% correct.  And definitely don't hold your breath waiting  ;-)
My sense is that internally Adobe fiercely guards against bloat in the size of the Flash Player installers.  Fiercely.
But now they have AIR too.  And Acrobat.  (Both of which now include Flash Player in their current versions.)
Personally, I would settle for MP3 encoding in AIR as a first step.  Plus, VP6 and H.264 in AIR.
My sense is that the hurdle against bloat in the AIR installer size is dramatically lower.  And we definitely need these additional encoding capabilities built-in to some runtime.
So, whenever you have a chance to lobby Adobe engineers or submit requests to their wishlist, just keep asking.
g

Similar Messages

  • Anyone successfully recording mic audio and playing it back on ios?

    hey all
    i am having a lot of annoying problems with recording microphone audio and playing it back on the iPhone (same app works flawlessly on desktop and android)
    has any of you successfully done that?
    Saar

    @Varun Bhatia,
    yes i can
    my simple recording test app works great on the desktop and on Android.
    on the other hand, on ios (iPhone 3gs, latest os) i sometimes hear nothing on playback, sometimes just the end of the recording, sometimes the playback is stuttering.
    thanx,
    Saar
    i am using flash pro cs5.5 overlayed with the AIR 3 sdk.
    the FLA contains two movieclips on stage named "recorder" and "player". they act as buttons. all the code is in the document class:
    package  {
              import flash.display.Sprite;
              import flash.media.Microphone;
              import flash.media.Sound;
              import flash.media.SoundChannel;
              import flash.events.MouseEvent;
              import flash.events.SampleDataEvent;
              import flash.utils.ByteArray;
              import flash.events.Event;
              import flash.media.SoundMixer;
              import flash.media.AudioPlaybackMode;
              public class RecTest extends Sprite {
                        var mic:Microphone;
                        var s:Sound;
                        var sc:SoundChannel;
                        var nowRecording:Boolean = false;
                        var nowPlaying:Boolean = false;
                        var recordedBytes:ByteArray;
                        public function RecTest() {
                                  SoundMixer.audioPlaybackMode = AudioPlaybackMode.MEDIA;
                                  mic = Microphone.getMicrophone();
                                  mic.rate = 44;
                                  mic.gain = 70;
                                  mic.setSilenceLevel(0);
                                  s = new Sound();
                                  recordedBytes = new ByteArray();
                                   recorder.addEventListener(MouseEvent.CLICK, record);
                                   player.addEventListener(MouseEvent.CLICK, playBack);
                        function record(e:MouseEvent) {
                                  if (!nowRecording) {
                                            trace("recording");
                                            recordedBytes.clear();
                                            mic.addEventListener(SampleDataEvent.SAMPLE_DATA, getMicAudio);
                                            nowRecording = true;
                                  } else {
                                            trace("recording stopped");
                                            mic.removeEventListener(SampleDataEvent.SAMPLE_DATA, getMicAudio);
                                            nowRecording = false;
                        function getMicAudio(e:SampleDataEvent) {
                                  recordedBytes.writeBytes(e.data);
                        function playBack(e:MouseEvent) {
                                  if (!nowPlaying) {
                                            trace("playing");
                                            recordedBytes.position = 0;
                                            s.addEventListener(SampleDataEvent.SAMPLE_DATA, playAudio);
                                            sc = s.play();
                                            sc.addEventListener(Event.SOUND_COMPLETE, stopPlayback, false, 0, true);
                                            nowPlaying = true;
                                  } else {
                                            sc.stop();
                                            stopPlayback();
                        function stopPlayback(e:Event=null) {
                                  trace("playing stopped");
                                  s.removeEventListener(SampleDataEvent.SAMPLE_DATA, playAudio);
                                  nowPlaying = false;
                        function playAudio(e:SampleDataEvent) {
                                  for (var i:int = 0; i < 8092 && recordedBytes.bytesAvailable > 0; i++) {
                                            var sample:Number = recordedBytes.readFloat();
                                            e.data.writeFloat(sample);
                                            e.data.writeFloat(sample);

  • Will Firefox work on a Huawia 858 Vodafone smartphone some time in the future, please. Thank you.

    I note that Firefox works on a Huawei Impulse 4G phone. Do you have plans to make it available for a Huawei 858 Vodafone smartphone some time in the future, please?
    Thank you.

    Thanks for your prompt reply. Yes my phone can connect to the Android market. When I perform a search for Firefox on the market, it only shows up books, no apps. When I type in http/fennec etc (correctly), I get a screen showing "Index of/pub/mozilla.org/mobile/releases/latest/android/multi", with 2 choices underneath - a "Parent Directory" and one with a ? So I have selected the one with the ? It showed "downloading" for a few seconds, then returned to the "Index etc" menu. There is nothing new on my phone - certainly not Firefox.
    Not sure what to do now, but thanks for your suggestion.

  • Can flash record audio in .mp3 format?

    I have an Audio Recorder created in flash. Currently it records audio  and saves it in .flv format.(I am using AS2.0 and Red5 server)
    My question is: Is there  any way by which I can record and save audio in .mp3 format, directly?
    Thanks in advance.

    The .flv format is a "container" format, not a video format.
    So that means that inside the container, you can have a video file and/or an audio file or even just an audio file.. which most likely is already an mp3 file. Use something like "FLV Extract" to break open the container and see:
    http://moitah.net/
    But really, for any Web delivery of audio, the .flv (audio only) method works just fine. Lots of media players available for the Flash .flv file.
    For example:
    Sounds from my bunk on the Lady Washington
    http://exploreolympics.com/reports/?p=2857
    Scroll down to third media player.
    A little quiet to start with... but this is a .flv file with just an mp3 audio file inside.
    Best of luck!
    Adninjastrator

  • Mic only seems to record / playback audio in LEFT channel/speaker

    when i record videos / audio with my phone, online playback only comes from the LEFT speaker.
    ie:
    http://www.facebook.com/video/video.php?v=427597527682&ref=mf
    this has occurred with every video.
    anyone else having this?

    i'm not talking about on the phone itself.
    if i import the audio from something i record, it's only the left channel. not the split mono, as it should be,

  • Recording multiple audio files

    Hi,
    Is it possible to have a program that will record separate audio files every time the user presses stop and save? Would the solution for this be a state machine...? How could I update the Sound File Open and Output Configure VI's if they are outside the while loop? I am guessing that I could implement this by putting the state machine within another while loop?
    Anton

    Assuming that you only want to record a single file at a time...
    State machine with 4 states - idle, start, read and stop. When you press the start button you go from idle to start and start the sound acquisition. Then you stay in the read case - reading the samples and writing to the file (possibly using producer/consumer architecture with a queue) until the user presses the stop button where you go into the stop case to stop acquiring the sound data and go back to the idle case.
    You could use an event structure to process the button presses.

  • How can I record an Audio Instrument (saxophone) and listen to a reference track at the same time?

    How can I record an Audio Instrument, and listen to a reference track at the same time?

    Are you using an external audio controller or the line-in and headphone jacks on the side of your computer? You shouldn't have an issue using headphones when you're recording through the line-in but you may want to make sure you have monitoring on and it's going to the right place.
    If you're using an external audio controller, try making an aggregate device combining the controller and the "built-in output" into the same device. Go to Applications/Utilities/Audio MIDI Setup, click the "+" sign at the bottom left to make a new device and check the "use" boxes to the left of the physical devices you want to use as part of that aggregate device. That is how I use the computer's speakers or headphones to monitor my input as opposed to only being able to use the output on my audio controller.
    Now that I see some of the questions on the side of this page I realize that the 13" MBPs seem to have only one combined input/output jack... That is an incredibly stupid feature. What on Earth could possibly justify that design decision? I suppose if that's the problem you're having you'll have to buy some sort of splitter (if they even make them) or get an external audio controller like an Apogee Duet or something along those lines. I would be furious if they combined those two jacks on all of the MBPs.

  • Satellite A80: How to restore audio and video codecs?

    How can I restore the audio and video codecs which are installed by default on my Satellite A80 with XP Home edition?
    I removed them in safe mode because of a problem with the Pinnacle Codec installed by Pinnacle Studio 10.
    Now I need to set the standard audio en video codecs back.
    I already downloaded the codec package from Microsoft Mediaplayer and have sound en video again in Media Player.
    Unfortunately I still don't have sound in Toshiba Diagnose Program when testing Midi and Wave sound.
    System restore came up with the message that restore was not possible because no changes had been made.
    Message was edited by: roel

    Have investigated in the forum and found this different codecs:
    -Zsunami Filter Pack: (3.9.9)
    - Nimo Codec Pack: (5.0 Final)
    - ACE Mega CoDeC Pack: (5.93)
    - Codec Pack Elisoft: (13.505)
    - K-Lite Codec Pack: (2.2) Full
    - SLD Codec Pack: (1.5 Pro)
    - All in One: (5.0.6.1)
    - The Codecs: (1.1 full)
    Well, if the system restore does't work try to install one or several codecs from this list.
    Have found it in this posting:
    http://forums.computers.toshiba-europe.com/forums/thread.jspa?threadID=12068&messageID=44047
    good luck

  • Record Audio in mp3 file format using FMS

    I am Recording Audio Using FMS which will record Audio file in FLV File Format default But I like to Record in MP3 File Format. Is it Possible.
    And I also Record Video In MP4 File Format using h264 encode. Which Give me Video File in MP4 File Format but When i will try to play that MP4 File it Didn't play. So, I post-processed video with a tool called F4V Post Processor. Now That MP4 Video File Play But Didn't Give me Sound in that Video.
    My Code is:
            var h264Settings:H264VideoStreamSettings = new H264VideoStreamSettings();
            h264Settings.setProfileLevel(H264Profile.MAIN, H264Level.LEVEL_3);
            ns.videoStreamSettings = h264Settings;
            ns.publish("mp4:"+FILENAME+".mp4","record");
    I search Lot but didn't get the solution. So, Please Give me Solution for Both thing.

    The .flv format is a "container" format, not a video format.
    So that means that inside the container, you can have a video file and/or an audio file or even just an audio file.. which most likely is already an mp3 file. Use something like "FLV Extract" to break open the container and see:
    http://moitah.net/
    But really, for any Web delivery of audio, the .flv (audio only) method works just fine. Lots of media players available for the Flash .flv file.
    For example:
    Sounds from my bunk on the Lady Washington
    http://exploreolympics.com/reports/?p=2857
    Scroll down to third media player.
    A little quiet to start with... but this is a .flv file with just an mp3 audio file inside.
    Best of luck!
    Adninjastrator

  • License for MP3 when recording user audio.

    I am planning a Flash app for web and mobile that can record user audio thru a microphone and then allow them to share the audio thru our website with other users of our website. This is a commercial site.
    I understand that the MP3 license is part of the Flash player and that I don't need a license for embedded audio.
    Where does the audio my application will be producing stand. Do I need an additional license to do this?

    Anyone? Anyone?

  • How to record an audio clip in Premiere Pro cc with USB mic on PC

    Hey All,
    Having trouble finding a solution on the web. I have just made the switch to Premiere Pro CC from Final Cut Pro 7, and also from Mac to PC, yikes I know. I am looking to record some audio clips directly into PP with my USB mic. I have successfully hooked up my usb mic through the PC control panel. My ignorance will be apparent here, What should I do next in Premiere Pro to begin recording my clips?

    https://helpx.adobe.com/premiere-pro/using/recording-audio.html
    NEW! Voice Over record feature in Premiere Pro CC 2014 - YouTube

  • What is the preferred virus scan program for iphone? I believe that I have a virus. My phone will come on by itself and it appears to be recording audio. I have read about spyware/surveilance viruses that will record audio and take photos.

    What is the preferred virus scan program for iphone? I believe that I have a virus. My phone will come on by itself and it appears to be recording audio. I have read about spyware/surveilance viruses that will record audio and take photos.

    My phone is not jailbroken.  I don't know what you mean about hacked.   Maybe it is hacked?   This is what is happening: About three times over the past few months I've noticed that my phone while "off" will come on (light up) and the screen shows an arrow towards the bottom; an arrow such that you would see on various "players" in order to "play" video or audio, I've searched my phone and cannot find any app that produces this particular screen though. Once I pick up the phone when this screen myseriously appears out of nowhere and press anything, it goes away and goes to the standard "slider" front page to unlock the phone.

  • Using Pro Logic X to record. I have several tracks and I'm trying to record an audio track. I have the mic connect to Avalon 737 then into apollo interface. When I record all track are being recorded into that track. I can't just get the audio to record.

    Using Pro Logic X to record. I have several tracks and I'm trying to record an audio track. I have the mic connect to Avalon 737 then into apollo interface. When I record all track are being recorded into that track. I can't just get the audio to record.

    Thanks for responding. Everything seems to work right except for the when I plug into the 737. Ok let me see if I can be more clear. I had this set up done with two representatives of Neumann, and DBox. Here it is I hope this helps. 32 Channel snake (24 Inputs 8 outputs) Channels 1-8 from snake to my Octopre for Drums. From Octropre output quarter inch lines into the Apollo 2, quarter inch input. This is so that the Apollo 2 is taking the drum tracks. Snake Channel 9-12 into Apollo 1 channels 1-4 xlr. Snake Channel 13-16 into Apollo 2 Channels 1-4 xlr. Snake Channel 17 into the 737, output of 737 into Channel 5 of the Apollo 1 quarter inch.
    Ok The Dbox. Sum output L&R into channel input 7&8 of Apollo 1. Apollo 1 output channels 1-8 into summing input channel 1-8 of Dbox. Apollo 1 main L&R going to main analog input L&R of Dbox. Spid out to DAW input of Dbox. I have both ADAT of both Apollos connected by optical wire. Also have port 2 of Apollo 1 into port 1 of Apollo 2 connected by Firewire.  Let me know. Hope I got it right. Thanks for responding.

  • Does anyone know if there is an Apple product that will record compute screens and audio?

    Does anyone know if there is an Apple product that will record screens and audio on the Mac Book?

    Apple's Keynote does this.
    See https://help.apple.com/keynote/mac/6.0/#/tan63d61519a

  • Hi I shoot on a canon 5d mk11 and I record my audio on an external device yet when I open up my footage in final cut pro x I can't find my external audio files only the ones attached to the clip which are off the camera mic

    I shoot on a canon 5d mk11 and I record my audio on an external device yet when I open up my footage in final cut pro x I can't find my external audio files only the ones attached to the clip which are off the camera mic

    What device?
    What format?
    How are you importing it?
    Can you find the external audio with Finder?
    Where is your destination file when you import it?
    Andy

Maybe you are looking for