Flash 11 and 5.1 sound

Hello

Question is what is the best way to create and play a sound with flash 11 5.1?

-What formats are supported by flash 11: aac, dts, wma professional or other?

-Which of the supported formats is cheaper to create without spending a fortune on the patented encoders?

-3rd party software for the creation of the soundchannels recommended? I know adobe first and other but more often too heavy, I want just the different sound channels.

-Flash cs4 does support 5.1 soundformat files that can be exported as swf which are later played in 11 flash?

I guess that's it

Thank you!

Hello

Unfortunately, we do not support multichannel audio in 11 Flash for the Desktop and Mobile of the Runtime Flash versions.  It is only supported in the 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 such as multichannel support

PCM, ADPCM, MP3, PCM has, NellyMoser 16 kHz mono, NellyMoser 8 kHz mono, NellyMoser, G711A, G711U, AAC, Speex, MP3 - 8 kHz and sound device.  I don't know which of the formats is the least expensive to create, but I recommend encoding with Flash Media Encoder or Adobe Premiere.  Those are the only 2 pieces of software, I have the experience to help.  Sorry, but I do not know the 3rd party software enough to give you advice on that.  I don't know if Flash CS4 supports files to 5.1 audio.  This question might be directed to the Flash Authoring team instead.

I hope that this info helps out you.

-Robert

Tags: Flash Player

Similar Questions

  • Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Bad job first elements 10.0. I made a flash animation and has decided to add sound in first - Elements.It turned jerks. How to fix this error

    Dear Sirs. I ask you to give special attention that the frame rate vidio input and output cannot exclude more than 1 frame, otherwise the image will shake and blurry text. It is preferable to use the HD 720 P 25 sincerely Mikhail Osipov

  • C4680 flashing light and sound with Mac OS x 10.6.8 and USB connection

    Printer and light beeps flashes when asked does not print.

    When I opened the door of the cartridge, ink cartrideges will not move.

    Power levels when I check in the printer utility are ok.

    When I unplug to reset then reconnect to power, by flashing and beeping resumed. I unplug the night so I can sleep, and in the morning when I plug it, it beeps and flashes.

    Have tried to reinstall the printer on the Mac OSX.6.8 OS. Always beeps and flashes.

    When trying to print, get message the printer offline.

    If I go to system preferences and open the print and fax, the printer finally hiccups, even if beeping, goes to the line and prints.

    After 5 minutes, it starts to beep and flashes again.

    I would appreciate ideas... I worked through this aqppears troubleshooting guide if I search "flashing lights" and printer just keeps beeping and flashing.

    It looks like a hardware problem, I will consider the question more away, but if a sensor is damaged, then that could lead to these issues.

    I would also like to check this site for possible updates:

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?OS=4063&LC=en&cc=us&DLC=en&sw_lang=&product=3739150#N303

    -Spencer

  • Vibrato flutter and trigger the sounds grew of different short low purr in Windows 7 64 bit

    These sounds have emerged in June after a Dell Inspiron 1545 laptop had an update of windows explore 10 and a grandson slammed the close laptop case. The intermittent short buzz has progressed to a flutter of constant vibrato in shades of superior height (display two bars very high to the right of the screen when audio from the control panel). Remove these two bars triggered the vibrato everywhere effect at the level of sound frequencies.  Ran PC Doctor - Dell PC diagnosis report online and got good health for the sound card, as it already had Windows.  Go to the control panel after a couple audio driver download updates of Dell - (previously uninstalled all Windows and '' recommended '' Explorer updates back to April 13 with no immediate effect) and after muted, not silent a couple of times from the taskbar of the office, with its open the Volume mixer - speakers / headphones (IDT High Definition Audio Codec) of the control panel , his mistake was reinstated regular 1-1.5 second low-frequency buzz new sounds, close enough one time every 24 seconds.   Currently have the system sounds (already programmed to noises of no) and browser (Firefox) sounds the two as buzz continues mute.

    So far, no clue that there is an Allen key, cursing, bad juju or the first sign of an alien invasion.  I have not recently installed anything other than Windows or Java updates / updates to Flash Player. McAfee has been finding anything about virus scans, for what it is worth.

    Is it possible to a semiconductor fail somewhere?

    Contact HP for assistance...

  • AS3: How to access and control embedded sounds in an external swf?

    I rarely use the sounds in AS3/Flash. I use Flash Pro CS6, but I can't seem to understand how access control (play, stop, etc) sounds embedded in a SWF external loading in the main SWF file.

    It is easy to control them when they are incorporated on the main swf. However, on a responsible external SWR, I get all sorts of errors. For this application, I really need to incorporate in the external SWF file.

    I've read several solutions, but none seems not to work.

    I integrate the sound file mp3 called soundSegment1.mp3 tool to import Flash CS6 and then open the properties panel actionscript Flash select the name of the class: SoundSegment1. Can I change the class ID and create a file named SoundSegment1.as, and it saved right next to my document class main.as in the same directory. The code for the SoundSegment1 class looks like this:

    package  {

       
    import flash.media.*;


       
    public class SoundSegment1 extends Sound
       
    {

           
    public function SoundSegment1 ()
           
    {
               
    // no code in here
           
    }


           
    public function playSound()
           
    {
               
    var soundSegment1:Sound = new SoundSegment1();
               
    var channel:SoundChannel = soundSegment1.play();
           
    }
       
    }
    }

    Then, in my main.as, I made several attempts to play this sound such as:

    var fileLocation:URLRequest = new URLRequest(SWFToLoad);

    loader.load(fileLocation);

    loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, progressListener);

    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeListener);

    loader.contentLoaderInfo.addEventListener(Event.INIT, initListener); 


    function initListener(e:Event):void // I also placed this code on the completeListener and it didn't work

    {

         loader.content.soundSegment1.playSound(); // doesn't work. 

    }

    I get:

    Line XXX 1061: Call to a possibly undefined method playSound through a reference with static type flash.display:DisplayObject.

    Otherwise, I also read that I should be able to do something like this anywhere in the Main.as file:

    var theClass:Class = Class(loader.content.getDefinitionByName("SoundSegment1")); var theSound:theClass = new theClass(); theSound.play()  //doesn't work either.

    I also tried on the completeListener:

    var TheClass:Class = e.target.applicationDomain.getDefinition("SoundSegment1") as Class;

    var theSound:TheClass = new TheClass();
    theSound
    .play()  //doesn't work either.

    I get:

    ReferenceError: Error #1065: Variable SoundSegment1 is not defined. at flash.system::ApplicationDomain/getDefinition()

    I'm stuck and I really need this to work. I would really appreciate your help.

    Thanks in advance for any help provided. I really need to make it work, because I can not simply incorporate into the main SWF or load them individually outside one by one.

    Thanks again!


    You can use the load and loadCompleteF below:

    var SWFToLoad: String =...;

    var s:String = "SoundSegment1";

    Load (SWFToLoad, s);

    function load (urlS:String, classS:String) {}

    var ldr:Loader = new Loader();

    ldr.contentLoaderInfo.addEventListener (Event.COMPLETE, function(e:Event){loadCompleteF(e,classS);});)

    LDR. Load (new URLRequest (URL));

    }

    function loadCompleteF(e:Event,classS:String):void {}

    var loadedAppDomain:ApplicationDomain = e.target.content.loaderInfo.applicationDomain;

    var C: Class = loadedAppDomain.getDefinition (classS) in class;

    var instance: * = new C();

    Sound (instance). Play();

    }

  • Return between Flash Builder and catalyst?

    It is, or will be - this, be possible to return to Flash Catalyst once a project was brought in Flash Builder?

    I imported the .fxp project into Flash Builder, made some code changes, then exported a .fxp project again.  I want to be able to edit this in catalyst so I can make changes, but when I try to open the project that catalyst says that it cannot be opened because it has been published outside of the application.  Is there something that I am missing or is this all just not yet implemented?

    It would be a shame not to "round trip" of catalyst on the generator.

    Thanks for your time and the product sounds very exciting.

    Hi Watern,

    For the first version of catalyst, we put the spotlight on the one-way workflow of the catalyst on the generator (start in catalyst, complete in Report Designer). We realize that this is a big limitation, hope to address shortly after the first exit.

    There are a number of partial solutions to this problem, you can find by searching on the forum. Most of them involves the Division of labour between the catalyst and Flash Builder as cleanly as possible, which is surprisingly easy to do given the new skinning architecture. Here is an excerpt from a post I wrote and which seems to have been lost:

    "If you are iterating between catalyst and Builder on a custom component, you can find that should divide the component custom off that way. I intend to write an article explaining this, but here is an overview:

    • In Report Builder, create a new subclass of the SkinnableComponent. The logic of the component put in there.

    • If you need to add logic visuals as "now pass the konfabulator 10px left", you should get konfabulator a part of the skin, using the metadata (see Scrollbar.as, in the Flex 4 SDK, for example).

    • If your component has States, declare them with metadata.

    • In the catalyst, make sure your custom component has the parts and States.

    • Then import the custom in Builder component.

    • In the MXML file for the custom component, change the tag root to . It's now a skin (not a component custom).

    • In the MXML file for the skin, add metadata [HostComponent ("com.me.MyComponent")] (see HScrollbarSkin.mxml, in the Flex 4 SDK, for example).

    • Each time that you create the instance, change the code to . Now you can create an instance of your component skinnable and assigning the skin created in catalyst.

    Fact! If you make changes more catalyst, you will have to repeat steps 5 to 7 times (for now!). »

    -Adam

  • My Airport Express will randomly start flashing orange and I have to unplug it to make it back to the green.  Wifi continues to operate even when the light is orange flashing.  Anyone know why this is happening?

    My Airport Express will randomly start flashing orange and I have to unplug it to make it back to the green. Wifi continues to operate even when the light is orange flashing. Anyone know why this is happening?

    The next time you see the flashing light amber...

    Open Finder > Applications > utilities > AirPort Utility

    Click on the image of the AirPort Express

    If you see a button update, click on update the firmware on the airport

    Otherwise, find status and click on the little orange dot it. A message will appear to say why the airport complained and suggest a remedy for the issue.

  • In Firefox. Every time I have cut a video and turn the sound back on it, the audio remains silent until I have to rewind the video a bit. Why does this happen?

    As the question inplies, no matter what video I play in firefox remains silent when I disable and reactivate the sound until I rewind. Why and how I fix this?

    It was very good work. Play well.
    Please report your last post as solved while others will know.

  • I have Shockwave Flash 16 and 17 and do turn Firefox 37, but youtube videos keep breaking.

    I have Shockwave Flash 16 and 17 and do turn Firefox 37, but youtube videos keep breaking.

    Thank you report to us your solution to the crashes of the Flash, which included reinstall the Flash plugin it after first do a complete uninstall, including manual removal of remains and records Flash files.

    For the benefit of other reading, Adobe provides instructions for uninstalling Flash on Windows in their own support article (linked to the Flash plugin - maintain and troubleshoot article Firefox problems) that is:

    http://helpx.Adobe.com/Flash-Player/KB/uninstall-Flash-Player-Windows.html

  • Ignore YouTube in Firefox more recent flash player and youtube using HTML5 player

    Hi I have a problem with the new firefox YouTube site ignores the flash player and uses HTML5 player. I have no any button to move to flash player in settings HTML5 on youtube (in another Web browser it works fine), you can see from the photo, but I have installed flash player and on https://helpx.adobe.com/flash-player.html after that press 'Check now' button flashplayer is detected correctly, see on photo 2. Can you help me? And sorry for my English.
    Photo:http://s14.postimg.org/ukndagdsf/youtube.png
    Photo 2:http://s28.postimg.org/8yr58jxyz/flash.png

    I played with the settings etc and now his job very well.

  • My macbook pro was factory reset and now it lights up with flashing? And when I go beyond that to choose the network but I can't go beyond that

    My Mac Pro was factory reset now it is coming with flashing? And when if and when I passed it will choose the network and I can't go beyond what I'm doing

    The flashing? the Mac is to tell you that it is unable to produce a valid system for starting.

    Try to make a recovery of the internet start-up as described in OS X: on OS X Recovery - Apple Support

    Looks like your hard drive is dead.

    I hope that you have a backup.

  • I uninstalled flash player and impossible to reinstall

    I had problems reading of streaming videos and decided to uninstall and reinstall flash player. I am running XP SP3, so I used the Add/Remove programs and uninstalled. Now, I can not re - install. I passed on the adobe site (http://www.adobe.com/software/flash/about/) and chose to install the drive via Firefox, but it failed and proposed a manual installation. Clicking on this link puts me on the adobe site, but by selecting the download button sends me to a page of advertising for other adobe products and no download occurs. I ran Internet Explore to see if I could download the file and Firefox recognize, but while it shows 'Adobe Flash Player 11 ActiveX"in the list of installed programs, Firefox doesn't know any difference. Any suggestions?

    A virus does not appear to be the problem. I have not been able to install from the adobe web site, but I did a search for the executable flash player downloaded and executed directly. This approach was implemented to me. Thanks for the help.

  • Player Flash editing and encryption

    In the past, I've encrypted a SanDisk thumb/flash drive with a right-click and then going to «Encrypt...» "but now, there is a problem: in a first time things seem to work, you choose a password etc, but they don't, and finally, there is a message"a Table of Partition GUID (GPT) partitioning scheme is required. »

    These Discussions to tell me to go to utilities > disk utility, select the flash player and then click on "Partition" in the option line (thought I would go ahead and choose a partition.) However, the Partition button is grayed out and is not available.

    So please, with a flash drive, how should we do about changing its formatting and encrypt?

    You must select erase. Format the drive in guid and chose the option to encrypt the drive as x OS Extended journaled encrypted.

  • Updated Firefox updated to its latest version 12.0. Now my plugin Adobe Flash freezes and blocks all websites when it is turned on even if it's the latest version.

    Today updated Firefox updated to its latest version 12.0. Immediately after the update, I couldn't load most of the sites. The web browser would just freeze. I have determined that the culprit is the Adobe Flash Plugin, however; even with the latest version of the plugin, I always have problems. Any suggestions?

    If anyone else has this problem I found a few options that may help you.

    I solved my problem by loading Waterfox, which is the 64-bit version of Firefox. I use a Windows 64-bit operating system, so this solution worked perfectly. If you want to download it, it can be downloaded here: http://waterfoxproject.org/

    It has also been suggested that I try to create a new Firefox profile. Since Waterfox works for me, I have not tried yet; However, I was told that it allows to solve several mysterious questions of Firefox with Flash. The directions for this can be found here: https://support.mozilla.org/en-US/kb/Basic%20Troubleshooting#w_8-make-a-new-profile

    I hope everyone can solve their problems of Flash Player and I recommend using the Adobe Forums as well. People there are very helpful.

    Good luck!

  • tried to send emails using the fast-forward button now e-mail flashes on and outside

    tried to send emails using the fast-forward button now e-mail flashes on and outside

    Please disconnect from the Internet temporarily, if necessary, by disabling a Wi - Fi connection or unplug Ethernet cable, whichever is applicable.

    In the Mail menu bar, select

    ▹ Connection Doctor window

    Look for the email account (SMTP) out in the window that opens. Double-click it. Another window opens, displaying the list of all outgoing mail accounts. We'll pick the one affected. Make a note of the settings. Click the sign to remove, and then click OK.

    Reconnect to the Internet and add the account back with the same settings.

Maybe you are looking for

  • Wiped 16 GB Ipad and 13.3 GB of space will not update to IOS6.0 directly to IOS9.2.1

    Hello Today, I got an ipad 16 GB with ios 6.0 (not used for years), which will not update to IOS 9.2.1. The error indicates less free space on the device. I wipe the ipad so no other substance is on the ipad, and I tried to update the ipad using the

  • WiFi Extender

    Hi, I recently went to a retailer for a Wifi extender, the EX7000, but they provided me with a R7000, I know very little about networks, but can I use the R7000 as an Extender or should I share?

  • Pavilion Slimline s3100n: BIOS PW help

    My HD crashed after a complete upgrade to Win10 by a Win8 OSvpurchase. I'm coming back. I reformatted a hard drive and CD recovery, but when I start and go to the BIOS it requires a PW. Don't know who. How do I move forward again? Thank you.

  • Impossible to download Silverlight, I get the message "the requested operation requires a rise."

    Original title: problem Siverlight I have a Pluzz.fr account and so I made a mistake and uninstalled siverlight. Then when I went to netflix it doesn't work and I say download siverlight so I clicked it and it does not download and it said the elevat

  • Increase the speed of improvement process - R12 with 12.1.0.2 Post

    Legends of dear,We are upgrading a database 10.2.0.5 to 12.1.0.2 R12.0.6. using dbua-The pre - upgrade processing time is 30 minutes or less-The upgrade process is 2 hours 10 minutes-Upgrade Post is almost ran for 7 - 8 hours - > how to reduce this t