Flash with sound 5.1

Hello , I'm working with some sounds that are made for dolby
surround system, 5.1 and I want to run with my game in flash.
Unfortunately it has a ac3 extension, that can not be run by flash.
Seems that the only sound that can be run by flash is in Stereo. Is
a way to run this sound dolby surround 5.1?
Thanks
Luis Ernesto Larrauri

Hello,
      Unfortunately, we don't support multi-channel audio in Flash 11 for the Desktop and Mobile versions of the Flash Runtime.  This is only supported in AIR for TVs. 
     Flash Player 11 on the desktop supports the following codecs: ADPCM, MP3, and AAC.  AIR for TV will support a wider range of codecs for multi-channel support such as
     PCM, ADPCM, MP3, PCM BigEndian, NellyMoser 16kHz mono, NellyMoser 8kHz mono, NellyMoser, G711A, G711U, AAC, Speex, MP3-8kHz, and Device Sound.  I'm not sure which of the formats is the cheapest to create, but I would recommend encoding with either Flash Media Encoder or Adobe Premiere.  Those are the only 2 pieces of software I have experience using.  Sorry, but I don't know the 3rd party software enough to give you advice on that.  I don't know if Flash CS4 supports the 5.1 sound format files.  That question might want to be directed to the Flash Authoring team instead.
I hope this info helps you out.
-Robert

Similar Messages

  • Can KN3 export flash with sound?

    I'm working on a presentation in KN2 and I need to export a .swf file with sound on each slide. I know I can export to Quicktime with sound, but I'm working with another company that only accepts a .swf files.
    Is this fixed in KN3? Any suggestions on how to solve this in KN2?
      Mac OS X (10.4.4)  

    ok, I just bought KN3. Opened my KN2 file that has narration on each slide. Saved it in KN3. Exported to Flash with sound.
    However at the end I got a error box. "The following problems occurred while trying save document. Export Warning- A media file in slide 1 was not exported" This error occurred with all of my slides.
    My audio files were recorded in Quicktime 7.0 Pro as "mov". Should the audio files be saved as a different format for Exporting to Flash?
    Can "kworley" let me know the audio format that worked?

  • Flash with Sound in DE

    I’m kind of a novice at this, but yesterday, I made a Flash file using CS4 with some simple animation and sound. The sound was a mp3 I found on the internet. I used on-line videos, one Adobe and another just YouTube to learn the Actionscript 3 to make it work. Then I embedded my file in a PDF and it worked fine. It also works fine in a browser. I tried bringing the Flash file into an InDesign file and exporting it to Digital Editions. The animation and buttons worked but there was no sound. I’m using a IMac. Can you tell me what I’m doing wrong?

    I’m kind of a novice at this, but yesterday, I made a Flash file using CS4 with some simple animation and sound. The sound was a mp3 I found on the internet. I used on-line videos, one Adobe and another just YouTube to learn the Actionscript 3 to make it work. Then I embedded my file in a PDF and it worked fine. It also works fine in a browser. I tried bringing the Flash file into an InDesign file and exporting it to Digital Editions. The animation and buttons worked but there was no sound. I’m using a IMac. Can you tell me what I’m doing wrong?

  • Flash with background sound (I got error #2037)

    Hallo.
    I am a beginner at AS3 programming. I like to make a flash with background sound (*.mp3 files from *.xml list). Everything works fine, but when I press "onClick" button I got output error.
    Error: Error #2037: Functions called in incorrect sequence, or earlier call was unsuccessful.
        at flash.media::Sound/_load()
        at flash.media::Sound/load()
        at proov_fla::MainTimeline/F_MP3_laadimine()
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at flash.net::URLLoader/onComplete()
    My Script:
    var MP3_PLAYLIST:String = "playlist1.xml";
    var LAADI_MUUSIKA:URLRequest;
    var MUUSIKA:Sound = new Sound();
    var MUUSIKA_KANAL:SoundChannel = new SoundChannel();
    var HETKE_MUUSIKA:Sound = MUUSIKA;
    var POSITSIOON:Number;
    var HETKE_INDEX:Number = 0;
    var KAS_MUUSIKA_MÄNGIB:Boolean = true;
    var XML_FAIL:XML;
    var MUUSIKA_NIMEKIRI:XMLList;
    var MP3_LAADIJA:URLLoader = new URLLoader();
    MP3_LAADIJA.addEventListener(Event.COMPLETE, F_MP3_laadimine);
    MP3_LAADIJA.load(new URLRequest(MP3_PLAYLIST));
    onClick.addEventListener(MouseEvent.CLICK, järgminelugu);
    function järgminelugu(e:MouseEvent):void
        MP3_PLAYLIST = "playlist2.xml";
        MP3_LAADIJA.load(new URLRequest(MP3_PLAYLIST));
    function F_MP3_laadimine(e:Event):void
        XML_FAIL = new XML(e.target.data);
        MUUSIKA_NIMEKIRI = XML_FAIL.track;
        LAADI_MUUSIKA = new URLRequest(MUUSIKA_NIMEKIRI[0].path);
        MUUSIKA.load(LAADI_MUUSIKA);
        MUUSIKA_KANAL = MUUSIKA.play();
    My full purpose will look like this http://uusrand.pri.ee/galerii/proov/

    Hallo.
    Can anybody help me to add an actionscript line(s) into attach file "newXML.fla".
    In this file I have a script to play mp3 files from xml list (this works).
    I also add button to load new mp3 fileslist from new xml file. But I don't know how.
    My Script:
    var MP3playlist:String = "http://uusrand.pri.ee/mp3/playlist.xml";
    var MP3file:URLRequest;
    var MP3SoundURL:Sound = new Sound();
    var MP3sound_channel:SoundChannel = new SoundChannel();
    var xml:XML;
    var playlist_index:XMLList;
    var xml_loader:URLLoader = new URLLoader();
    var MP3index:Number = 0;
    xml_loader.addEventListener(Event.COMPLETE, originalXMLfile);
    xml_loader.load(new URLRequest(MP3playlist));
    onClick.addEventListener(MouseEvent.CLICK, nextXMLfile);
    function nextXMLfile(e:MouseEvent):void
        if (MP3playlist == "http://uusrand.pri.ee/mp3/playlist_loodus.xml") {
            MP3playlist = "http://uusrand.pri.ee/mp3/playlist.xml";
        } else {
            MP3playlist = "http://uusrand.pri.ee/mp3/playlist_loodus.xml";
    function originalXMLfile(e:Event):void
        xml = new XML(xml_loader.data);
        playlist_index = xml.track;
        MP3file = new URLRequest(playlist_index[0].path);
        MP3SoundURL.load(MP3file);
        MP3sound_channel = MP3SoundURL.play();
        MP3sound_channel.addEventListener(Event.SOUND_COMPLETE, nextSong);
    function nextSong(e:Event):void
        if (MP3index < (playlist_index.length() - 1)){
            MP3index++;
        } else {
            MP3index = 0;
        var NextSongRequest:URLRequest = new URLRequest(playlist_index[MP3index].path);
        var NextSongURL:Sound = new Sound(NextSongRequest);
        MP3sound_channel.stop();
        MP3sound_channel = NextSongURL.play();
        MP3sound_channel.addEventListener(Event.SOUND_COMPLETE, nextSong);

  • Importing flash files (with sound!) can it be done?

    Hi!
    I sucessfully importing a flash file but im not sure if the sound has imported with it, does anyone know if I can import a flash file with sounds or do I have to import the sound seperatly?
    Helen

    Helen,
    After Effects can import .SWF files but unfortunately it does not recognize the audio in a .SWF file.
    If it helps, AE can import .FLV files and it WILL recognize the audio in them.
    Relevant Help page:
    "Supported import formats"
    -Troy

  • Can anyone please help me, I'm having problems with sound while watching video clips using flash player using Internet Explorer\

    Can anyone please help me, I'm having problems with sound while watching video clips using flash player & Internet Explorer

    There's a good chance that this is a known issue.  We'll have a Flash Player 18 beta later this week that should resolve this at http://www.adobe.com/go/flashplayerbeta/

  • Load flash movie which with sound problem

    Hi, all,
    I am doing a flash which with audio, the audio about 3-4 mins. But when i use another flash movie to load that flash mov with sound (using load movie function), cannot hear any voice. Why is it?
    The flash movie with sound is use actionscript to attach the sound, when i test the movie, it is work. When it comes to load from another movie, it doesn't work. Anyone can help me to solve it?
    Thanks.

    What version of Actionscript are you using?

  • Problems with sound in Flash

    I recently updated a sound file in a flash movie. I had some aif files that I updated with a mp3 sound file.  Within my movie there is a script for a replay button. It plays back fine when I play it, but when I press the replay button, it doesn't replay the sound, only the movie.  Hope I'm making sense, any ideas why I get no sound when I replay the movie?

    Sorry about that, I'm a bit of a newborn at this so I may say something stupid from time to time.
    As I said, "nav" is the image for the replay button
    The code for level0 is this
    _level0.doTimer();
    The rest of the code is
    _level0.controlsDisabled = true;
    //as : Frame 1299
    stop();
    // what's nav.  is that the movieclip the "replays"?
    nav.play();
    // what's _level0.doTimer() (copy and paste that code)
    _level0.doTimer();
    _level0.controlsDisabled = true;
    From: kglad <[email protected]>
    To: Ashton Matthews <[email protected]>
    Sent: Tuesday, July 5, 2011 10:16:34 AM
    Subject: Problems with sound in Flash
    i didn't suggest any code.  i only posted questions and you answered only one and that answer didn't help.

  • Problem with sound after update

    Hello
    After update to 11.3 I have no bass sound in subwoofer in Firefox browser (youtube). I uninstall the newest version and install previous (11.2) and bass plays ok.
    My os: Windows 7 x64. Sound card Creative X-fi.

    Hello!
    My problem is summed up in this topic.
    Updated Flash Player with 11.3 this morning (june 12th 2012) and since then my 7.1 Sound System works only 2.1. If i enable EAX Effects, works on 7.1 but since it`s just a room it sounds very odd.
    I have no problem with sound on HTML 5 websites for that matter, Winamp, Video Players, games.
    Uninstalled Flash Player, sounds work ok without it on different browsers, other than Chrome (since it has FP built in).
    I hope for a sollution soon.
    Thank you.
    *edit*
    Untill there is a permanent solution, i found a way to deal with my issue and i hope it will help others.
    I personally use Chrome and this is for this browser:
    1. Type "about:plugins" w/o the quotation in the navigation bar.
    2. On the upper right u will see "Details" click it then find the word "flash", and you will see something like this:
    Flash (3 files) - Version: 11,3,300,257
    Shockwave Flash 11.3 r300
    Name: Shockwave Flash
    Description: Shockwave Flash 11.3 r300
    Version: 11,3,300,257
    3. I say again, this worked for me on Chrome. The 3 files i have, two of them are Version 11,3,300,257 and one is 11.2.31.144
    4. Simply disable the lates version 11.3 and enable the previous version 11.2
    I hope this helps.
    Message was edited by: AndrewPAM

  • Modifying Flash Video Sound Track

    Hi
    Having a problem with my video. I'm doing a projector file,
    so I'm importing the video into the library so that I don't have
    any external files to deal with.
    When I import the video the sound is really quiet. I've tried
    bumping up the volume in iMovie and re-exporting it as a .mov file,
    but when I bring it back into flash, the sound isn't coming in.
    I've also tried converting the new version of the .mov to an
    flv using ffmpeg, but when it comes into flash, its still not as
    loud as when I play the .mov in quicktime or play the flv in
    flv_viewer.
    Does Flash change the volume setting when importing video? if
    so, how do you get the volume back up to 100%

    well,i would advice you to take a multitrack reacording by having all the instruments outs from the console outputs into your interface ,incase you want to make a mixdown later with atmosphere of the show it self ,and at the same time take main output from the mixer to your interface as well ,so u have both !:)and let logic do the rest of the job! also u can use a midi time code out from your interface to your light mixer in case you have a lioght show to be in sync with your music show...cheers.!

  • How can I stop adverts with sound coming up?

    When I go to certain web sites a video with sound comes up which is very awkward for my wife in the middle of the night. Can I suppress adverts like this?

    See:
    * Flash Block: https://addons.mozilla.org/firefox/addon/flashblock/
    You can also look at Adblock Plus.
    * Adblock Plus: https://addons.mozilla.org/firefox/addon/adblock-plus/
    You need to subscribe to a Filter list (e.g. the EasyList).
    * http://adblockplus.org/en/subscriptions
    * http://adblockplus.org/en/getting_started

  • In Flash the sound does not play only started from the beginning. Can anyone please help?

    In Flash, the sound only plays if the file is started from the beginning. The sound doesn't play if starting from anywhere other than the beginning.
    This is very frustrating when trying to sync the animation with the sound as it's not possible to scroll back and forward with the sound playing. The only way the sound works is if it is started from the beginning.
    If anyone can help that would be fantastic.
    Thanks

    Hi Jeromie,
    Many thanks for your help. Here is some additional information, which may shed light on the problem.
    I am using Flash Professional CC  2014.0 release,  Build 14.0.0.110
    The computer I'm using is then iMac running OSX version 10.9.3 Build 13D65 2.7 GHz Intel Core i5
    I am using Flash, not a web-based editor that leverages Flash Player.
    "a direct link to the project or tool would be useful in allowing us to attempt to reproduce the problem" -  Not sure how to do this, how can I add the project to the forum?
    Many thanks once again for your help, let me know if you need more information.
    Cheers
    Michael

  • Anyone know how to make a QT .mpg? (mpeg2 with sound)

    I have a gig making QT file for this display that plays from a flash card, it just loops the content on the card but it needs a .mpg(mpeg2 file with sound) I can not seem to figure out hoe to make this kind of file. Compressor only makes m2v files and I can not play then in QT for some reason.
    I have QT files that work in these devices so someone made them.
    Any one know how to do this?
    Thanks, Mark

    When I need to make these files I create the MPEG-2 video & MP2 audio in compressor, then join the resulting files with BitVice Helper, a cool free app.
    'How do you make MP2 audio in compressor' I hear you ask. Choose the DVD : MPEG-1 preset & turn off the video encoding, resulting in an audio only file (pay no attention to the file extension).
    Combine this with the MPEG-2 video in BitVice Helper and the resulting .mpg is good to go.
    Creating the files with compressor like this is handy for jobs that have multiple destinations.
    Jono!

  • How to disable the flash and sound of the camera o...

    would I like to know how I do to disable the Flash and sound of the camera of N73?
    or does anybody know about some software that makes that?

    06-Dec-2008 08:30 AM
    krizanand wrote:
    hi suman,
    i too faced this problem afetr updating it to new firmware,when i checked my application manager there was an application which opens only with the ZIP manager
    it was troubling me a lot when i switch off and ON the phone time and again
    Finally i did a RESET *#7370# the application was not reflecting in the App manager and the problem got resolved
    Hope this works out for u
    if it is i will be Glad cheers........... try it
    Yes, that will solve all problems and as well as your data. There are alternatives which I already mentioned here. You can search to find the answer, since it to complicate to do it again.
    C6-00 with 8GB MicroSD

  • Flash::media::Sound pthread problem

    When i start these two thread together the application freeze.
    Each thread on its own works !
    #include <pthread.h>
    #include <Flash++.h>
    using namespace AS3::ui;
    pthread_t audiothread;
    pthread_t tickThread;
    static var sampleDataEventListener(void *arg, var as3Args)
        flash::events::SampleDataEvent event = var(as3Args[0]);
        flash::utils::ByteArray data = event->data;
        printf("info: sampleDataEventListener write zero---\n");
         for ( unsigned int c = 0; c < 8192; c++ )
            data->writeFloat(0.0f);
        return internal::_undefined;
    static void *sampleDataThreadProc(void *arg)
        printf("Create sound object\n");
        flash::media::Sound sound = flash::media::Sound::_new(internal::_null, internal::_null);
        sound->addEventListener(flash::events::SampleDataEvent::SAMPLE_DATA, Function::_new(sampleDataEventListener, NULL), false, 0, false);
        sound->play(0, 0, internal::_null);
        AS3_GoAsync();
        printf("Error: GoAsync returned!\n");
        return NULL;
    ** Tick thread
    void *tickThreadProc(void *colorArg) {
        printf("TickThread start\n");
        int i = 0;
        while(i < 20)
            usleep(80*1000);
            printf("tick\n");
            i++;
        printf("TickThread done!!\n");
        return NULL;
    ** main method
    int main()
        printf("init console\n");
        pthread_create(&audiothread, NULL, sampleDataThreadProc, NULL);
        pthread_create(&tickThread, NULL, tickThreadProc, NULL);
        AS3_GoAsync();
        return 0;
    The application freeze with the output:
    init console
    Create sound object
    TickThread start
    tick
    tick
    tick
    My build call is:
    "$(FLASCC)/usr/bin/g++" $(BASE_CFLAGS) flash++ui.cpp -lAS3++ -lFlash++ -symbol-abc=Console.abc -pthread -O1 -swf-size=500x500 -emit-swf -o flashui.swf
    My console.as can be found here:  http://pastebin.com/ngkbcdYC
    I tried to init the console in both ways (CModule.startAsync(this) and CModule.startBackground(this, new <String>[], new <String>[]))  which doesn't make a diffrence.
    I also tried to set the -swf-version=18 parameter, but it doesn't make a difference, too.
    Anyone has an idea what is wrong ?
    Thanks !

    It may be that the calls to printf() are causing the problem. The printf() function may or may not be thread-safe or reentrant, depending on the system. Perhaps you might enable printf in only one of the threads, run it, and then enable it only in the other thread, and see what happens (easy test to make). If you are more ambitious, you could wrap the printf calls in a mutex. Generally, some folks recommend doing an explicit flush...

Maybe you are looking for

  • My wife killed my iPhone 4 by washing it, how can I get a replacement handset?

    G'day all. My wife recently made my iPhone 4 lovely and shiny by washing it........ It's now dead and I've tried all the usual things to bring it back to life. I just would like a replacement. Is there any way I can get one through apple?

  • HT201210 What is error 28 (unable to restore ipad)?

    Ipad needs to be restored, but won't complete the restore.  Error message contains code 28 in parenthesis.  Any clues about what I could do?

  • BTE FOR f110 not trigerred

    Hello Gurus, I have one BTE ZPFRFI_PROCESS_00001120 which works properly for Tcode FB01 but is not triggered by F110. Please help.

  • Putting a Oracle RAC in  to archive log mode??

    Our RAC is a 10gR2 Three(3) node RAC with a SAN as the shared storage. cluster is installed on linux. at the moment the RAC is in noarchieve log mode. SQL> archive log list; Database log mode No Archive Mode Automatic archival Disabled Archive destin

  • Delivery Note in GR

    Hi, when doing GR (MIGO), the same delivery note will accept morethan one goods receipt. how to control it? means... i want matain in single delivery note for single GR. if give same delivery note for more than one GR, then system wont accept...where