No sound playback in SWF?

Created a simple animnation, with a mp3 sound file in it.
When I do "Test Movie" within Flash, the little pop-up windows
shows and plays and the soundtrack also plays. But when I try to
open the swf itself inside Player, I get no sound. Please
advise.

I'm assuming you have waveform in your audio track to indicate that there actually is sound on the clip, and it didn't just get lost somehow in your conversion process?
And have you checked other clips in Premiere to verify that the sound is working on them as well?

Similar Messages

  • Sound playback: no sound, abnormally high bitrate.

    I've been reading up on using JMF for simple sound playback all day, and I've seen countless examples that do the same thing I'm doing, but in every instance, I get absolute silence. Additionally, it seems that the read bitrate is higher than it should be, according to the control panel's properties dialog (e.g., 480Kbps for a 192Kbps mp3).
    The code always goes something simple like this:
        Player player = null;
        try {
          MediaLocator ml = new MediaLocator(new File("BGM.mp3").toURL());
          player = Manager.createPlayer(ml);
        catch (Exception e) { System.err.println("BGM messed up"); }
        if (player != null) {
          player.addControllerListener(p);
          player.start(); //this does realize and prefetch
        }I put some debug output statements in my controllerUpdate function, and it is indeed realizing, prefetching, and starting playback of the file. I have tried this with both wav's and mp3s (I have the mp3 plugin installed in addition to the JMF 2.1.1e itself), and have always gotten the same result - MediaTime progresses too fast, roughly 2.5 times faster than it should (5 seconds for every 2 real seconds), and I get no sound.
    At this point, after having tried at least 2 examples found online in addition to my own code, I'm convinced there's something up with my Java runtime in itself, not just my code... anyone have any experience with this kind of problem?
    System Info:
    OS: Windows XP Pro SP1
    Java Version: 1.5.0_02
    JMF Version: 2.1.1e (zip version [no performance pack], with mp3plugin added)
    Thanks in advance for any help.

    Do you use it in an Applet ?
    I'm also unable to play any sound with Java(TM) Plug-in 1.5.xx the
    plugin to all browsers nowadays.
    You mentioned you used it on Windows 98 SE.
    The old IE browser used the build in javaVM. It worked - just look at
    the java consol and you see a lot of warnings and errors -, but in the
    end it played video and sound.
    The only solution I found is to use Java(TM) Plug-in 1.4.xx. The
    'automatic search for update' box must not be checked, otherwise it
    will update to the newest Plugin and you face the same problem. If you
    want to place an applet on your homepage, just use video only - until
    now it works correctly on ALL PLATFORMS.
    There was a Bug Report 6245070 where I was asked as well to give an
    example a year ago, but this was all - no response at all. In this
    applets I used
    Content Type : video.quicktime
    Video Encoding : h263
    Audio Encoding : ULAW
    not even mpg3!!
    I tried to compile the whole JMF Version: 2.1.1e with J2SE 5.0 and
    Standard Edition 6 Beta. At one version I changed all the
    inconviences like the reserved words "enum" ..., and an other version
    with old style, which is possible with Standard Edition 6 Beta.
    It seem's the problem is not in the part you are able to compile. It
    seems to me it is in the sound.jar api, but I really don't know - just
    trail and error.
    Conclusion only JRE lower and until version 1.4.xx will work.
    It would be a pleasure to me if I'm wrong and there is a solution.

  • Global volume control for all sounds in a swf

    Does anyone know of a way to adjust the volume of all the sounds in a swf?  I'm looking to build a volume controller that changes the audio level of the swf.
    Thanks!

    I used:
    SoundMixer.soundTransform = new SoundTransform(0);
    and that mutes all sounds in my swf.

  • Lost sound playback for movies, podcasts, etc.  How can I regain playback?

    I have lost audio playback for movies, podcasts, etc on my iPad2.  New user.  How can I get my sound playback back?  It worked initially!

    discovered the solution from another discussion group. 
    Double clicking on the "home" button of the iPad opens a list of apps across the bottom of the screen.  Moving to the left end of this display there is an audio slide bar which was set to the lowest part on my iPad.  Moving this setting to a mid level restored sound to the video feeds I was having trouble with.

  • Pavucontrol/Pulseaudio hangs sound playback

    Hello everyone
    I've posted on this before, and the bug went away, but now it's back and I just wish it'd go away permanently. For reasons I can't explain, trying to control the volume with pavucontrol (or, it seems, any volume control that interacts with pulseaudio) suspends sound playback. And then pavucontrol crashes with a callback timeout failure error.
    I've followed all the various guides on setting up Pulseaudio. I've experimented with setting sinks, with setting sound outputs, everything. But time and again the pavucontrol applet brings the sound to a halt. As far as I know I've installed everything that might be needed. I used to like Pulseaudio, the whole control-volume-of-individual-streams is great. But it just doesn't work. And yet it's one of those features, which once you get used to it, is really hard to live without.
    How can I fix this once and for all?
    EDIT: Reading /var/log/errors.log I've noticed that Pulseaudio is failing to set hardware parameters with a connection timeout.

    Have you tried setting the pulse volume from alsa (amixer)? You should really bring this to the pulse mailing list, since this sort of bug is probably hardware/driver level and not very simple to debug.

  • How can I stop timeline sounds in external swf files from playing during loading?

    I am having a problem with timeline sounds in external swf files playing during loading in a main swf. Can anyone help me?
    Here is some of the code from the main swf. I hope I have included enough.
    Thanks.
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.events.ProgressEvent;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.SliderEvent;
    import flash.media.SoundTransform;
    preloader_mc.fill_mc.scaleX = 0;
    var swfA:Array = ["part1.swf","part2.swf"];
    var frameA:Array = [];
    var currentLoader:Loader;
    var swfTotalFrames:int;
    var tl:MovieClip = this;
    var st:SoundTransform = new SoundTransform()
    var index:int = 0;
    loadNextF();
    play_slider.enabled = false;
    function loadNextF():void{
                    tl["loader_"+index] = new Loader();
                    tl["loader_"+index].name = index.toString();
                    tl["loader_"+index].contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progressF);
                    tl["loader_"+index].contentLoaderInfo.addEventListener(Event.COMPLETE,completeF);
                    tl["loader_"+index].load(new URLRequest(swfA[index]));
    function progressF(e:ProgressEvent):void{
                    var fractionLoaded:Number = index/swfA.length+e.bytesLoaded/(e.bytesTotal*swfA.length);
                    preloader_mc.fill_mc.scaleX = fractionLoaded;
                    preloader_mc.tf.text = (100*fractionLoaded)+"% Loaded";
    function completeF(e:Event):void{
                    tl["loader_"+index].contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,progress F);
                    tl["loader_"+index].contentLoaderInfo.removeEventListener(Event.COMPLETE,completeF);
                    SoundMixer.stopAll();
                    var mc:MovieClip = MovieClip(tl["loader_"+index].content);
                    mc.gotoAndStop(1);
                    frameA.push(mc.totalFrames);
                    index++;
                    if(index<swfA.length){
                                    loadNextF();
                    } else {
                                    // all loads complete.  start play.
                                    restart_mc.buttonMode = true;
                                    restart_mc.alpha = 1;
                                    tl.addEventListener(Event.ENTER_FRAME,playUpdateF);
                                    tl.removeChild(preloader_mc);
                                    preloader_mc = null;
                                    play_slider.enabled = true;
                                    playpause_mc.alpha = 1;
                                    currentLoader = tl["loader_0"];
                                    tl.addChild(currentLoader);
                                    MovieClip(currentLoader.content).play();
                                    sliderParamsF();

    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.events.ProgressEvent;
    import flash.events.Event;
    import flash.net.URLRequest;
    import fl.events.SliderEvent;
    import flash.media.SoundTransform;
    preloader_mc.fill_mc.scaleX = 0;
    var swfA:Array = ["part1.swf","part2.swf"];
    var frameA:Array = [];
    var currentLoader:Loader;
    var swfTotalFrames:int;
    var tl:MovieClip = this;
    var st:SoundTransform = new SoundTransform()
    var index:int = 0;
    loadNextF();
    play_slider.enabled = false;
    function loadNextF():void{
        tl["loader_"+index] = new Loader();
        tl["loader_"+index].name = index.toString();
        tl["loader_"+index].contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progressF);
        tl["loader_"+index].contentLoaderInfo.addEventListener(Event.COMPLETE,completeF);
        tl["loader_"+index].load(new URLRequest(swfA[index]));
    function progressF(e:ProgressEvent):void{
        var fractionLoaded:Number = index/swfA.length+e.bytesLoaded/(e.bytesTotal*swfA.length);
        preloader_mc.fill_mc.scaleX = fractionLoaded;
        preloader_mc.tf.text = (100*fractionLoaded)+"% Loaded";
    function completeF(e:Event):void{
        tl["loader_"+index].contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,progress F);
        tl["loader_"+index].contentLoaderInfo.removeEventListener(Event.COMPLETE,completeF);
        SoundMixer.stopAll();
        var mc:MovieClip = MovieClip(tl["loader_"+index].content);
        mc.gotoAndStop(1);
        frameA.push(mc.totalFrames);
        index++;
        if(index<swfA.length){
            loadNextF();
        } else {
            // all loads complete.  start play.
            restart_mc.buttonMode = true;
            restart_mc.alpha = 1;
            tl.addEventListener(Event.ENTER_FRAME,playUpdateF);
            tl.removeChild(preloader_mc);
            preloader_mc = null;
            play_slider.enabled = true;
            playpause_mc.alpha = 1;
            currentLoader = tl["loader_0"];
            tl.addChild(currentLoader);
            MovieClip(currentLoader.content).play();
            sliderParamsF();
    ///////////////// start sliders /////////////////////////////////
    sound_slider.addEventListener(SliderEvent.CHANGE,soundSliderF);
    function soundSliderF(e:SliderEvent):void{
        st.volume = e.value/100;
        tl.soundTransform = st;
    play_slider.addEventListener(SliderEvent.CHANGE,playSliderF);
    play_slider.addEventListener(MouseEvent.MOUSE_DOWN,playSliderDownF);
    //play_slider.addEventListener(MouseEvent.MOUSE_UP,playSliderUpF);
    function playSliderDownF(e:MouseEvent):void{
        tl.removeEventListener(Event.ENTER_FRAME,playUpdateF);
        stage.addEventListener(MouseEvent.MOUSE_UP,playSliderUpF);
    function playSliderUpF(e:MouseEvent):void{
        tl.addEventListener(Event.ENTER_FRAME,playUpdateF);
    function playSliderF(e:SliderEvent):void{
        SoundMixer.stopAll();
        var frameNum:int = Math.ceil(swfTotalFrames*e.value/100);
        var partialTotalFrames:int = 0;
        for(var i:int=0;i<frameA.length;i++){
            partialTotalFrames += frameA[i];
            if(partialTotalFrames>=frameNum){
                break;
        partialTotalFrames -= frameA[i];
        //trace(i,frameNum,frameNum-partialTotalFrames);
        if(currentLoader!=tl["loader_"+(i)]){
            tl.removeChild(currentLoader);
            MovieClip(currentLoader.content).stop();
            currentLoader = tl["loader_"+(i)];
            tl.addChild(currentLoader);
        if(playpause_mc.currentFrame==1){
            MovieClip(currentLoader.content).gotoAndPlay(frameNum-partialTotalFrames);
        } else {
            MovieClip(currentLoader.content).gotoAndStop(frameNum-partialTotalFrames);
    function sliderUpdateF(e:Event):void{
        var playedFrames:int = 0;
        for(var i:int=0;i<Number(currentLoader.name);i++){
            playedFrames += frameA[i];
        playedFrames += MovieClip(currentLoader.content).currentFrame;
        play_slider.value = Math.round(100*playedFrames/swfTotalFrames);
    function sliderParamsF():void{
        swfTotalFrames = 0;
        for(var i:int=0;i<swfA.length;i++){
            swfTotalFrames += MovieClip(tl["loader_"+i].content).totalFrames;
    ///////////////// end  sliders //////////////////////////////////
    ///////////////// start playpause restart ///////////////////////
    playpause_mc.addEventListener(MouseEvent.CLICK,playpauseF);
    playpause_mc.alpha = .2;
    restart_mc.addEventListener(MouseEvent.CLICK,restartF);
    restart_mc.buttonMode = false;
    restart_mc.alpha = .2;
    function playpauseF(e:MouseEvent):void{
        if(!e.currentTarget.toggle){
            MovieClip(currentLoader.content).stop();
            tl.removeEventListener(Event.ENTER_FRAME,playUpdateF);
            e.currentTarget.gotoAndStop(2);
        } else {
            MovieClip(currentLoader.content).play();
            tl.addEventListener(Event.ENTER_FRAME,playUpdateF);
            e.currentTarget.gotoAndStop(1);
        e.currentTarget.toggle = !e.currentTarget.toggle;
    ///////////////// end playpause //////////////////////////////
    function playUpdateF(e:Event):void{
        sliderUpdateF(e);
        var playingFrame:int = MovieClip(currentLoader.content).currentFrame;
        if(playingFrame==frameA[Number(currentLoader.name)]){
            // next loader
            MovieClip(currentLoader.content).stop();
            SoundMixer.stopAll();
            MovieClip(currentLoader.content).mute();
            var nextIndex:int = Number(currentLoader.name)+1;
            if(nextIndex<swfA.length){
                tl.removeChild(currentLoader);
                currentLoader = tl["loader_"+nextIndex];
                tl.addChild(currentLoader);
                MovieClip(currentLoader.content).gotoAndPlay(1);
            } else {
                tl.removeEventListener(Event.ENTER_FRAME,playUpdateF);
                playpause_mc.gotoAndStop(2);
                playpause_mc.toggle = !playpause_mc.toggle;
                //playpause_mc.alpha = .2;
                // all swfs have completed play
    function restartF(e:MouseEvent):void{
        MovieClip(currentLoader.content).stop();
        tl.removeChild(currentLoader);
        SoundMixer.stopAll();
        MovieClip(currentLoader.content).mute();
        currentLoader = tl["loader_"+0];
        tl.addChild(currentLoader);
        if(playpause_mc.currentFrame==1){
            MovieClip(currentLoader.content).gotoAndPlay(1);
        } else {
            MovieClip(currentLoader.content).gotoAndStop(1);

  • Sound/Playback Stops Suddenly in Windows Vi

    I have recently encountered a very strange problem with my computer: the sound/playback stops working randomly. For instance, let's say I've just rebooted my computer and have launched WMP to play some mp3s. It will work fine for anywhere from a day or two to, at minimum, a few minutes...and then, once an mp3 file finishes playing, sometimes I will hear a weird sort of "squeak" coming from the speakers--after which playback will not work--but even if I do not hear any sort of strange audio, if I click another file to play...WMP will load the media, but will not play it. The play button will switch to pause as normal, but the file will not play. The exact same thing happens in *other* media players, as well: iTunes, J. Ri'ver Media Center...even WinAMP. I have a SoundBlast X-Fi Platinum audio card, and have been running it under Windows Vista Home Premium since January with no problems. I have all the current Vista drivers installed for it, and *have* had them installed for months. I'm really not sure whether this problem is software- or hardware-related, hence the reason I'm crossposting this to?Microsoft's Vista?forums as well. What should my next step be? I'm not really sure where to go from here. Thank you!?Dere C. F. Pegritz

    I have the same problem here too. Vista Ultimate 64bit4Gb RamX-fi Extreme Gamer Pro?Currently have to re-boot when it happens. I have just installed the new drivers (30 May) - I will see if this has any effect!?RegardsBrian.

  • Sound playback in LT?

    a way to hear sound playback on an imported fcp movie file in LT? I could only get video playback, but sure would B helpful to have sound instead of just markers- is it a setting?
    thx

    Nope. Just markers. Bottom line: There's no audio playback support in LiveType.
    It's a silent app. That's a feature! No pesky sound annoying your studiomates.
    Your best bet is to have LiveType and FCP open at the same time. Save your LT project, and import it into FCP. When you change something in LT and want to preview it with sound, go to FCP (use Expose and you'll look cool), and play. It will automatically recognize the changes you made in LT. If you need to tweak, go back to LT, change things, and come back to FCP to play. it's really not all THAT clunky.

  • Stop all sounds or unload SWFs in Spry Tabbed Pages

    Hello
    I am using the Dreamweaver Spry Tabbed pages for a project.
    On several of the tabbed pages I have flash content running in iFrames.
    If the user does not stop the movie before clicking on another tab the sound will continue and the movie will keep running in the background.
    How do I script the tabbed panel code to unload the swf content before going to another tab? And to reload the content when returning to pages with swf content again?
    Thank you on beforehand.
    ggaarde

    Hi Sudarshan
    Please go to:
    http://gggraphic.com/t-mobile/tab_flash_test/
    Tab 1 shows a flv by embedding the code right in the HTML
    Tab 2 just shows text: Content 2
    Tab 3 shows a flv imported from another HTML page in a iFrame
    None of the movies are set to autoplay - you have to click the arrow to start them.
    This is what I found:
    On the Mac:
    In Safari, Chrome and Firefox:
    When playing the movie in Tab 1 (embedded flash object) > start the movie > then click tab 2 = the movie readily stops as desired, and loads the text on tab 2.
    When playing the movie in Tab 3 (iFrame version)  > start the movie > then click tab 2 = the movie keeps playing, and the sound will continue.
    On the PC:
    In IE 8 (which is my main audience) It makes no difference if the flash content is embedded or iFramed in = when clicking tab 2 the movies continues playback no matter which one (tab 1 or tab 3) is playing.
    Chrome: (takes longer to load) Same as on the Mac = the embedded verion provides the desired function.
    Firefox: (takes longer to load) Surprise!  It does not matter is the Flash is embedded or iFramed in = When tab 2 is clicked the playback of either of the Flash versions stop.
    What I would like:
    Ideally I would love a fix for IE 8 that would allow stop playback of the iFrame version, since it offers many advantages over the embedded version.
    Can you help me?
    Thanks on beforehand.
    ggaarde
    The automatically generated standard Spry Assets are unchanged from your default.
    This is my code for the tabbed system:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <script src="../../SpryAssets/SpryTabbedPanels.js" type="text/javascript"></script>
    <script src="../../Scripts/swfobject_modified.js" type="text/javascript"></script>
    <link href="../../SpryAssets/SpryTabbedPanels.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="TabbedPanels1" class="TabbedPanels">
      <ul class="TabbedPanelsTabGroup">
        <li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
        <li class="TabbedPanelsTab" tabindex="0">Tab 3</li>
    </ul>
      <div class="TabbedPanelsContentGroup">
        <div class="TabbedPanelsContent">Flash Content - flash object embedded in code<br>
          <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="640" height="360">
            <param name="movie" value="TreeRemoval.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="6.0.65.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="TreeRemoval.swf" width="640" height="360">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="6.0.65.0" />
              <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object>
        </div>
        <div class="TabbedPanelsContent">Content 2</div>
        <div class="TabbedPanelsContent">Content 3 - Flash content in iFrame <br>
        <iframe src="http://gggraphic.com/t-mobile/tab_flash_test/iFrame_source.html    " style="border:0px #FFFFFF none;" name="myiFrame" scrolling="no" frameborder="0" marginheight="0px" marginwidth="0px" height="360px" width="640px"></iframe>
        </div>
    </div>
    </div>
    <script type="text/javascript">
    var TabbedPanels1 = new Spry.Widget.TabbedPanels("TabbedPanels1");
    swfobject.registerObject("FlashID");
    </script>
    </body>
    </html>

  • How to control timeline sound of external SWF

    Hi All,
    Basic Intro:
    I am new in Action Script and trying to create a video tutorial framwork. In this I have lots of animated SWF files in all the files I have multiple scenes as those are 5min. to 10 min. each and all the files have the relevent background and nurration voice place directly on the TIMELINE frame by frame to match lip syncing animated chreactors.
    My file structure :
    Login.swf with login box is embedded into the Index.html
    After logged in it will load another SWF which is Control panel.swf
    3. Controlpanel.swf has the controls to control the loaded external swf files i.e.: Chapter menu, Play, pause, replay, volume-bar, next and previous buttons.
    By Default Controlpanel.swf will open chapter1.swf as soon as user logged in so no one need to open 1st file.
    Here user can navigate to other chapter swf file through Chapter menu or Next and Previous buttons.
    All files are loading and playing properly, here I am trying to control the animation and Sound both at a same time with Pause, Play and Replay through relevant buttons.
    Problem:
    By pressing “Pause button” animation stops but not the sound. Sound remains playing, and if I replay the swf by “Replay button” than animation restarts but sound also restarts that overlaps already playing audio.
    Question: So could anybody help me finding out how to:
    1. Pause the sound with animation by the same click of Pause button, and
    2. Stop the sound with animation by the same click of Stop button, and
    3. On replay it should stop playing the previously running audio and restart it with the animation like fresh loaded file, it should not sound overlapping.
    Constraints:
    Here I am using the sound file on the same time line of each individual swf file which I cannot add into any single movie clip because all the chapter swf file are having multiple scenes in it.
    For my problem I have already done a lot of browsing online in various forums and didn't find the solution. So here I am sharing the complete information regarding the project and wishing to get some good solution out here but if I missed any helpful information please ask me anytime and please help me to quickly find out the solution.
    Thanks a lot to all of you in advance to help me.

    create one global sound variable
    you can write when you are pressing pause button
    globalsoundvariable.setVolume(0)
    to play
    globalsoundvariable.setVolume(100)

  • SB Audigy SE (SB0570) / Win 8.1 64bit completely freezes on sound playback

    hi there,
    I got a problem: my audigy se doesnt work on windows 8.1 64bit.
    I freshened up my pc and installed a clean win 8.1 os on a new harddrive.
    I tried installing the official SB24_PCDRV_LB_1_04_0090a.exe driver.
    I got a audigy se (sb0570), and driver installation works fine. the card got recognized and it can play a sound, but after a few seconds my whole PC freezes without bluescreen. it doesnt matter if it is a flash video, a mp3 or just a windows sound; it always freezes. when the sound device is disabled, the system runs without freezes. I can start a playback, ofc there is no sound, but the system is stable.
    my card works fine on win 7 64bit with older drivers. plus, I am using the support pack 2.6 by daniel_k (I still use my old SDD with win7 on it and everything works fine). I also tried support pack 2.6 on my win 8.1 system but it doesnt even recognize the card. the newer support pack 3.0 does recognize sb0570 and actually the sound works for about 10seconds (my 5.1 system works fine for that 10 sec, all speakers are getting a signal, but then it freezes...).
    so, both the official and the unofficial drivers are not working.
    has any1 a clue?

    IRe: SB Audigy Series Support Pack 3.0 + DTS Encoder Switcher (08/28/2009).
    blunden wrote:
    EddieObscurant: 4. works fine for me in AC3. I use AC3filter though and it has it's own speaker settings. Perhaps that helps until the next release.
    daniel_k: I uploaded it to 4shared.com and MediaFire for you since I don't really like Rapidshare. I hope you don't mind.
    http://www.4shared.com/file/302793/e9678376/Audigy_SupportPack_3_0.html
    http://www.mediafire.com/download.php?rjmznqa2oy
    Sure I don't mind, thanks for helping, but I've?just uploaded an updated package, version 3..
    Fixes an issue that prevents Speaker Fill from working.
    There is also a hotfix in the main post, so those who have already installed Support Pack 3.0 don't need to reinstall.

  • CS5 No sound playback with HD422 clips

    Hi, I installed CS5 Master parallel to my CS4 Master installation on a Windows 7 (64-bit) system. I opened a new HD422 project and imported HD422 1080i50 footage. If I play back the clips on the timeline or through the monitor I can't hear any sound. There is just a faint noise. If I import an EX3 clip the sound works fine. Does anybody has this problem, too?
    I also have the Matrox Axio LE card installed with my CS4. According to reports from users they were able to install CS5 parallel and it didn't break their AXIO funtionality. In my case the importer process is crashing, when I'm opening Premiere CS4. I thought this should work fine. I don't know if this issue has any influence on my HD422 playback.
    Marcus

    Marcus,
    There have been several reports of Audio issues with Matrox cards. Going back to the CS4.2 days, Matrox issued an updated driver that got the Audio issues sorted out for many, if not all. That would be the first place that I would look.
    Good luck,
    Hunt

  • Rotating Video Playback within SWF

    At playback I am rotating a video (FLV) from a landscape to a
    portrait perspective (90 degree rotation) within a flash SWF. From
    a technical perspective, does flash just rotate the video on the
    fly, or does it go as far as to recreate and redraw the video in
    the new perspective?
    Are there any known issues with rotating video using
    flash?

    Here is a link to a great example...
    http://www.adamfrost.net/elearningMaterials/flash/rotateVideo/rotateVideo.htm

  • Stereo Sound on export swf

    When I export my swf to Dreamweaver for a music site and test
    it in Safari, the mp3 sound has been changed to mono and the sound
    quality is poor.... so I looked on my export settings and It won't
    let me use stereo for mp3s..... I'm still using MX 2004.... is any
    version of Flash stereo compatible? Or any other suggestions how to
    get stereo mp3s into my site besides just embedding them in the
    page?

    All versions of Flash can output stereo, including from mp3s.
    Go to Publish Settings, click on "Set" for both Audio categories.
    If you set the bit rate to higher than 16, you'll get better sound
    quality and the option of stereo. Realize that enabling stereo will
    seriously downgrade the sound quality, since the resources are now
    split between two channels. So you'll need to increase the bit rate
    further to compensate.
    If you still don't see the stereo option enabled after
    increasing the bit rate, then perhaps your MP3 is encoded at an odd
    bit rate, which can give Flash indigestion.
    It's always best to start with non-lossy audio source files
    such as WAV or AIFF when importing into Flash, then let Flash
    handle the compression.

  • Stop sound From external SWF

    Here is my issue. I have a main.swf and I load an external
    music player.swf. I need to stop the sound from the player.swf when
    I push a button on the main.swf. Not all buttons just some buttons.
    I now I will need to put the code in each button. Thanks

    it works for all sounds that are playing when it executes no
    matter where they orignated.

Maybe you are looking for

  • Error while executing Multiple Stored Procedure through .sql file

    Hi Guru's. I am new to ORACLE. I am facing problem while creating Stored Procedure through .sql file. I have one test.sql file with Stored Procedure is like, CREATE OR REPLACE PROCEDURE skeleton1 AS BEGIN      DBMS_Output.Put_Line('skeleton1'); END s

  • BAdI for PO

    Hi all, I'm using badi ME_PROCESS_PO_CUST for making some custom controls on PO. Now I have to check some fields of services of a PO item, but I can't find in the badi any structure with services data. In particular I have to check the flag on limit

  • How do I transfer contents of hard drive on PPC iMac G4 to a new quad-core Intel Core i5

             Although my PPC iMac G4 still works OK, I am beginning to realise the time has probably come to get a current model in order to keep up with all the advances that have happened since I bought it about 8 years ago: I will probably get the new

  • Problem with decode function while dispaly the data ( urgent )

    Hi friends , I want the output like this. sample: CLIENT CODE: 00027 PLAN CODE: 01 SSN Last Name First Name TYPE Frequency Amount 123-45-6036 Perrault Julia D M 250.00 123-45-6036 Perrault Julia D Q 400.00 CLIENT CODE: 00027 PLAN CODE: 02 SSN Last Na

  • Array pointer in array

    Can anybody tell me how to create pointers in an array pointing to other arrays?