Trouble inserting audio in Presenter 9

I'm trying to manually insert audio into the Presenter 9 pptx plugin as a single .wav file with embedded markers from a Sony Vegas audio export and getting an error message each time.
Here is my process:
>Presenter >Import Audio >Browse to .wav file >imports the file >OK (import complete) >Publish
>error message: "Adobe Presenter cannot locate the audio clips for slides 1 through x."
This process has worked perfectly in previous versions of Presenter, but is not working now. 
Any ideas or suggestions would be greatly appreciated.

You placing the audio file in that folder won't result in it working. Presenter must convert the audio, and place it in that folder. It should create a new audio file for each slide.
I've not seen placing markers in the audio files work before, not to say your method is not valid. I create an audio file per slide, and then number them accordingly (slide01.wav, slide02.wav, etc.). Then select the first slide to import the audio to and in the dialog that opens, select all the audio files. Presenter will pull in the audio files and assign them to the slides in sequential order.
That may be faster than fighting with the presentation.

Similar Messages

  • Trouble inserting audio clip into sequence (CS5)

    I'm running Premiere Pro CS5 on Win7 x64.  I have an MP3 audio clip that I've selected a sub-clip from, as you can see here:
    When I click on the insert button, everything to the right of the insertion point on the timeline is pushed to the right, as if the clip were inserted, but the clip doesn't show up anywhere (I've scrolled up and down through both the audio and video tracks), as you can see here:
    I've done this many times beofre without any problem.  What am I doing wrong now?
    Thanks for your help.

    Glad I could help.
    http://blogs.adobe.com/kevinmonahan/2013/09/11/marking-posts-as-correct-or-helpful-on-the- adobe-forums/

  • Anyway to turn on presenter mode without inserting audio visual cable on Ipad??

    anyway to turn on presenter mode without inserting audio visual cable on Ipad??

    This is the Mac discussion,   try posting in the iPad discussion for an answer

  • Trouble inserting Flash in CS5.5

    I just upgraded to CS5.5 and am having trouble inserting a Flash file into Dreamweaver. When I used CS4, I would open the html file that Flash created in the Publish process. I would copy and paste the top part of that file -- the <script> info into the header of my dreamweaver code. Then in the location where I wanted the Flash file to be I would paste the code from the Flash html that started with <!--url's used in the movie--> and ended with </noscript>.
    However, the files I just created in Flash using all the same Publish settings as I used previously (I think!) look completely different. There is nothing like either of these sections that I previously used to insert the Flash code into Dreamweaver. Here is a comparison of the 2 Flash html files so you can see what I'm talking about.
    Flash html in CS4:
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Firestone</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
        var version;
        var axo;
        var e;
        // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
        try {
            // version will be set for 7.X or greater players
            axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
            version = axo.GetVariable("$version");
        } catch (e) {
        if (!version)
            try {
                // version will be set for 6.X players only
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                // installed player is some revision of 6.0
                // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                // so we have to be careful.
                // default to the first public version
                version = "WIN 6,0,21,0";
                // throws if AllowScripAccess does not exist (introduced in 6.0r47)       
                axo.AllowScriptAccess = "always";
                // safe to call for 6.0r47 or greater
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 4.X or 5.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = axo.GetVariable("$version");
            } catch (e) {
        if (!version)
            try {
                // version will be set for 3.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                version = "WIN 3,0,18,0";
            } catch (e) {
        if (!version)
            try {
                // version will be set for 2.X player
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                version = "WIN 2,0,0,11";
            } catch (e) {
                version = -1;
        return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
        // NS/Opera version >= 3 check for Flash plugin in plugin array
        var flashVer = -1;
        if (navigator.plugins != null && navigator.plugins.length > 0) {
            if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                var descArray = flashDescription.split(" ");
                var tempArrayMajor = descArray[2].split(".");           
                var versionMajor = tempArrayMajor[0];
                var versionMinor = tempArrayMajor[1];
                var versionRevision = descArray[3];
                if (versionRevision == "") {
                    versionRevision = descArray[4];
                if (versionRevision[0] == "d") {
                    versionRevision = versionRevision.substring(1);
                } else if (versionRevision[0] == "r") {
                    versionRevision = versionRevision.substring(1);
                    if (versionRevision.indexOf("d") > 0) {
                        versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
        // MSN/WebTV 2.6 supports Flash 4
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
        // WebTV 2.5 supports Flash 3
        else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
        // older WebTV supports Flash 2
        else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
        else if ( isIE && isWin && !isOpera ) {
            flashVer = ControlVersion();
        return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
        versionStr = GetSwfVer();
        if (versionStr == -1 ) {
            return false;
        } else if (versionStr != 0) {
            if(isIE && isWin && !isOpera) {
                // Given "WIN 2,0,0,11"
                tempArray         = versionStr.split(" ");     // ["WIN", "2,0,0,11"]
                tempString        = tempArray[1];            // "2,0,0,11"
                versionArray      = tempString.split(",");    // ['2', '0', '0', '11']
            } else {
                versionArray      = versionStr.split(".");
            var versionMajor      = versionArray[0];
            var versionMinor      = versionArray[1];
            var versionRevision   = versionArray[2];
                // is the major.revision >= requested major.revision AND the minor version >= requested minor
            if (versionMajor > parseFloat(reqMajorVer)) {
                return true;
            } else if (versionMajor == parseFloat(reqMajorVer)) {
                if (versionMinor > parseFloat(reqMinorVer))
                    return true;
                else if (versionMinor == parseFloat(reqMinorVer)) {
                    if (versionRevision >= parseFloat(reqRevision))
                        return true;
            return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){   
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":   
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#c9aad0">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
            'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
            'width', '175',
            'height', '66',
            'src', 'Firestone',
            'quality', 'high',
            'pluginspage', 'http://www.adobe.com/go/getflashplayer',
            'align', 'middle',
            'play', 'true',
            'loop', 'true',
            'scale', 'showall',
            'wmode', 'transparent',
            'devicefont', 'false',
            'id', 'Firestone',
            'bgcolor', '#c9aad0',
            'name', 'Firestone',
            'menu', 'true',
            'allowFullScreen', 'false',
            'allowScriptAccess','sameDomain',
            'movie', 'Firestone',
            'salign', ''
            ); //end AC code
    </script>
    <noscript>
        <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="175" height="66" id="Firestone" align="middle">
        <param name="allowScriptAccess" value="sameDomain" />
        <param name="allowFullScreen" value="false" />
        <param name="movie" value="Firestone.swf" /><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="bgcolor" value="#c9aad0" />    <embed src="Firestone.swf" quality="high" wmode="transparent" bgcolor="#c9aad0" width="175" height="66" name="Firestone" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
        </object>
    </noscript>
    </body>
    </html>
    FLASH html (different video) in CS5.5:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        <head>
            <title>AfrWomen</title>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <style type="text/css" media="screen">
            html, body { height:100%; background-color: #000000;}
            body { margin:0; padding:0; overflow:hidden; }
            #flashContent { width:100%; height:100%; }
            </style>
        </head>
        <body>
            <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="200" height="54" id="AfrWomen" align="middle">
                    <param name="movie" value="AfrWomen.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#000000" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="transparent" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="AfrWomen.swf" width="200" height="54">
                        <param name="movie" value="AfrWomen.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#000000" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="transparent" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>
        </body>
    </html>
    HELP!!!!!

    OK, firstly, you can open the site an Dreamweeaver CS 4 and insert your flash video, but with CS 5.5 Adobe decided that Flash support should be something they should deprecate. And there is good reason.
    Mobile devices don't handle Flash very well. iPhones and iPads simply won't play it and many of the Android devices make a video into a slide show with sound.
    With CS 5.5 though, you can make an HTML5 document that understands the <video> tag. This will allow you to directly embed a video into a website without needing any plugin. There is a complete explanation and tutorial here:
    Webmonkey: Embed Video in your web page using HTML5
    From the article, here's the source:
    <video width="560" height="340" controls>
      <source src="path/to/myvideo.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
    <source src="path/to/myvideo.ogv" type='video/ogg; codecs="theora, vorbis"'>
    </video>
    That's it! You can add additional stuff, like an image placeholder and so on, but really, you're looking at four lines of code here. Now, with the Flash stuff, Adobe, which supported Flash, wrote all of the code for you. While that was easy, it was a lot more complicated and, of course, clients on your site had to have the Flash plugin to see the video.
    Your doctype declatation is XHTML 1.0 strict. You will need to change your doctype to HTML5 thusly:
    <!DOCTYPE html>
    <html lang="en">
    Then after your head tag, declare your character set:
    <meta charset="UTF-8">
    Lastly, you will need to make sure that your server understands the ogg Theora MIME type. Download your .,htaccess file from your remote server and add the following lines to the end of that file:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    You may also be able to add these MIME types from your server's control panel.
    Then, you're finished with Flash—forever.

  • Audio Tip: Do not edit audio in Presenter

    After much wasted time trying to figure out why is was not playing back properly with missing audio I wanted to pass this tip along...
    With Presenter 7.0.6 or 7.0.7 do not edit audio. This includes inserting silence and cutting out audio.
    For some reason Presenter created MULTIPLE MP3 files for each slide. I have one slide that has 55 seconds of audio and Presenter has split that into 16 different MP3 files. Some are .5 seconds long. This seems to mess up the play back sometimes freezing up playback.
    Record your audio using something else and import one MP3 for each slide and then add the slide timing.

    Hey Frank. This is a good tip. Ever since Presenter changed the way they handle audio files, we have stopped recording our audio in Presenter; we all happen to have Captivate licenses on my team so we use it to record and edit all audio before we export to Presenter. If we have to make any changes, we also go back to Captivate and import the changed audio again. We tried working with the Adobe "support" for months on this issue and got nowhere. Each time you alter audio, even if you remove your breathing sounds, if divides the audio into two parts at the place where you changed it. So, yes, for longer pieces of audio, you end up with multiple files. Presenter does "merge" them together when you publish; however, it doesn't do a very good job of it. So every time the playbar reaches one of these split sections of the audio, it has a little glitch.
    Now that you can record audio in PowerPoint and since the PowerPoint integration is so much better in Captivate, we will be dropping our Presenter licences. We may keep one or two so we can update existing modules. Unfortunately when the product has too many glitches and the support is not good (we had Gold or Platinum support too), you can't afford to stay with the product. We've used it for about 6 years.

  • I'm having some trouble transferring audio books to my iPhone.  It usually takes 3 or 4 tries to get all the parts transferred.  I didn't use to have this problem - all parts would transfer in one try.

    I'm having some trouble transferring audio books to my iPhone.  It usually takes 3 or 4 tries to get all the parts transferred.  I didn't use to have this problem - all parts would transfer in one try.

    carolinechx wrote:
    i know the description may be a little bit too confusing
    Mostly because you are not using any capital letters or paragraph returns and your post is difficult to read.

  • Still having trouble with audio on Macbook Pro

    I had posted a discussion board earlier on this issue. I've been having trouble with audio for certain videos on youtube and basically any website embedded with a video. The audio works for a few seconds that doesn't or it doesn't work at all. My volume is up, not on mute, and the one on the video isn't on mute either. It's funny because I just tried watching a video on Firefox (as opposed to Safari) and it works. Could it possible be something with the settings for safari?

    Try restarting your Mac, resetting your router, and resetting your modem. My cable internet has gotten slow at times as well, and when I reset my router everything cleared up.

  • Issues with inserting audio in PowerPoint option

    I am trying to insert audio from the "Online Audio" option in PowerPoint 2013 however when the Insert Audio window pops-up with nothing in it. It is blank. Does anyone know how to fix? I have tried running a repair on Office 2013 the same thing
    still happens.

    Hi,
    I found a thread with a similar issue, please check if the reply from George to check the Trusted App Catalogs is helpful to you:
    https://social.technet.microsoft.com/Forums/en-US/7558fb7a-3991-4b6d-9fa3-f8ee349a4105/powerpoint-insert-online-audio-box-empty?forum=officeitpro
    Add website URL in the Trusted App Catalogs from FILE -> Options -> Trust Center -> Trust Center Settings -> Trusted App Catalogs -> Add the catalog url and check if then you can use the url to search Online Audio.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Issue / problem adding audio in Presenter 7 (PowerPoint 2010)

    Since I got a new PC (Windows 7), I'm having an issue / problem adding audio in Presenter 7 (PowerPoint 2010).
    It doesn’t happen every time, but randomly with many presentations...
    In PowerPoint, right after I import audio (through Presenter) and click “ok”, I get the following errors:
    Then, I can't get into the "import/sync/edit" mode, from the Presenter tab...
    Already tried reinstalling Presenter, resaving new presentations, deleting the .ppcx/audio folders, importing the audio locally (vs from my network drive), etc.
    Then sometimes, randomly, it will let me get back in and edit the audio, after numerous attempts…?!? I can't figure out what the pattern is, which is causing this new problem (never had this problem before, w/ my old PC - Win XP / PowerPoint 2003 / Presenter 6 & 7)
    Anybody have an idea what the issue could be?
    Thanks,
    Mike P.

    Hello,
    I  tried to reproduce this issue but I am not getting any error message. Please provide us following information; this might help to reproduce this issue:-
    1) You are seeing this issue in  PPT or PPTX
    2) You seeing this issue in newly created presentations or its just old presentation which is not working properly.
    3) OS and PowerPoint version
    4) If this issue is consistent on any particular presentation then please share it.
    5) Can we have exact reproducible steps
    Regards,
    Shubhi

  • Audio Problems - Presenter 6 & 7

    I currently use Presenter 6.2 (but have also downloaded and
    tried this with Presenter 7.0). Whenever I try use Import Audio,
    Synchronize Audio, or Audio Editor, Powerpoint crasches. That is
    part of the problem.
    The other more serious part for now is that when I click on
    Record Audio and begin to record audio, there is always an
    electronic interference type noise being recorded over the audio. I
    have isolated it to the Presenter Plugin, as my headphones record
    just fine in other programs (but this does me no good, as I cannot
    import audio without Powerpoint crasching).
    I am therefore assuming that there is a problem between the
    Presenter plugin and my sound card (and/or codecs). I have a
    SigmaTel High Definition Audio Codec. I am not sure however where
    the information is for my actual sound card. It was not listed in
    the device manager , only the drivers and codecs were there. There
    was one the said Legacy Audio Drivers, Manufacturer (standard
    system devices, location uknown, but said to be working properly).
    Does anyone have any idea what I can do to resolve these
    problems? - most importantly, being able to record audio in
    Presenter without this electronic interference being recorded over
    the voice recordings.
    I am using a Dell Latitude D830 with Windows XP Professional
    Version 2002 SP2, with Microsoft Powerpoint (Office) 2003, Intel
    Core 2 Duo 2.2Ghz, 2GB RAM. Also perhaps important is that I am
    also using a German version of Windows
    Thanks for any help you may be able to provide me in
    resolving this issue.

    Best practice for tables in HTML (RH or not) is to use
    percentages instead of absolute measures. Using this method, we
    have had no problems with the transform into Printed Doc.
    We use:
    For 2-column tables at normal paragraph level, 100% and
    usually 20%,80%
    For 2-column tables in a list, 90% and usually 20%,70%
    For 2-column tables in a second-level list, 80% and usually
    20%,60%
    Don't worry about any long, unbroken character strings in
    column 1 (such as a long database column name), because the HTML
    default is to grab the space it needs to prevent breaking up such a
    string. If the text needs 27%, for example, it will take it.
    Good luck,
    Leon

  • How to insert a Prezi presentation in InDesign?

    I have seen that there are some tricks to insert a Prezi presentation to a PDF file offline, using the PDF creator.
    Is there any way to insert a Prezi presentation onLine in inDesign?

    Thank You! A very clear answer

  • Why inserting audio creates a gap in my video ?

    Hi,
    I try to insert a short audio mp3 bakcground music in my work.
    I try to insert it several times because it is short and I need it repeat.
    So I insert it once at begining of my work. When I insert it a second time, it will create a gap between the end of previous audio piece, and its own end.
    Why on earth does it does this ? Why audio can break video ? This turns me mad, please tell me how can I insert audio files without destroying my video ?
    Thanks,
    Uglook

    Uglook wrote:
    I try to insert a short audio mp3 bakcground music in my work.
    I try to insert it several times because it is short and I need it repeat.
    So I insert it once at begining of my work. When I insert it a second time, it will create a gap between the end of previous audio piece, and its own end.
    Why on earth does it does this ? Why audio can break video ? This turns me mad, please tell me how can I insert audio files without destroying my video ?
    Are you trying to put it onto the Audio 1 track? If so after the insert (that creates the gap) you will need to break the video/audio link by right-clicking the audio track and selecting 'Unlink Audio and Video'. With the link broken you can then move just the video clips to fill the gap.
    If you are not already using the 'Soundtrack' track for something else that would be the better place to add your mp3 clip.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Adobe Captivate Help | Insert audio

    This question was posted in response to the following article: http://helpx.adobe.com/captivate/using/insert-audio.html

    From the manual:
    "You can attach an audio file to a button or click box and have the audio play when the user clicks the button or click box instead of when the button or click box is displayed. To do this, create the button or click box and select the Success Caption option. Make the Success Caption transparent and do not add any text. Add an audio file to the Success Caption."
    Is this the method for adding audio to a smart shape, click box, or any other element? If so, I got as far as the last sentence: "Add an audio file to the Success Caption." That's what I want to know how to do -- add audio so that when a little smart shape is clicked, it plays a sound. I don't know why I'm having such a hard time finding the instructions for something so basic.
    Any help appreciated!!

  • Encore CS3 - Hangs and import problems with menus and avi footage with audio tracks present.

    I'm trying to import some footage files in .avi format into Encore CS3 and am having several problems.
    In what follows when I say "crash" I mean Encore quits with a standard Windows error. When I say "hang" I mean Encore does not quit but rather becomes an unresponsive process that must be killed manually using Windows Task Manager.
    My System:
    WinXP Pro SP2
    2.93 GHz Intel Celeron CPU - single core
    Intel PERL mobo
    3GB 400MHz RAM
    NVidia 7800GS video
    I mention these specs however I am not experiencing any hardware
    related bugs or issues (like out of memory or video driver crashes
    etc) when using any CS3 app.
    The footage files (as reported by GSpot) and problems I am seeing. In all cases GSpot reports that I have the appropriate codec installed:
    footage1.avi - Dx50 XVid 1.0.3, Dolby AC3 48kHz 192kb/s, 716834 KB
    Attempting to import as timeline causes Encore CS3 to hang.
    Importing as an Asset allows it to import but when I try to click
    on it in the project windown to add it to a new empty timeline,
    Encore hangs. It plays fine in Windows Media Player.
    footage2.avi - Dx50 XVid 1.0.3, MPEG-1 Layer 3 48kHz 128kb/s, 718302 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no audio.
    footage3.avi - Dx50 XVid 1.0.3, MPEG1-Layer3 48kHz 112kb/s, 717606 KB
    Imports fine as either a timeline or asset but no audio track comes
    with it, even though there is an audio track in the footage. It plays
    fine in Windows Media Player. Video imports perfectly, just no
    audio. I tried converting this one using AVS to both MPEG3 and DivX,
    each using MPEG1-Layer3 44kHz 192kb/s audio, and got the same issue
    upon importing into Encore CS3. I also loaded it into Camtasia
    Studio and it looked fine over there. The audio was present and I
    was able to export it as a .WAV file. When I tried looking at the
    file in Soundbooth CS3, there was no audio track or, more
    accurately, the audio track was a flat line.
    By way of comparison these are importing perfectly:
    footage4.avi - XVID XviD 1.1.0 Beta2, MPEG1-Layer3 48kHz 189kb/s Two mono
    channels LAME3.96r, 717436 KB.
    footage5.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage6.avi - XVID XviD 1.1.0 Final, Dolby AC3 48kHz 448kb/s Six
    channels (3/2 .1), 716418 KB.
    footage7.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717502 KB
    footage8.avi - XVID XviD 1.0.3, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 717180 KB
    footage9.avi - XVID XviD 1.1.2 Final, Dolby AC3 48kHz 448kb/s 6 channels
    (3/2 .1), 2291904 KB
    Although this one imported & transcoded correctly, when I went to
    build it to a DVD image file I got some strange errors during the
    "planning video" stage that prevented the process from completing.
    Unfortunately I neglected to write down the error message I recieved
    which read like quite nonsensical babble to me, and I have since
    deleted the project folder. I remember it was not a memory or
    display related error and it included a timestamp where the error
    was happening. I played the footage in the preview panel thru the
    identified timestamp but it previewed perfectly without even a
    jitter in either the video or audio. Took forever to transcode so I
    doubt I'll be doing this one again anytime soon.
    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the

    Another issue I am having is with the motion menus. I burned a DVD and it does not load correctly in one of my DVD players (a Sony rdr-gx330 recorder/player). It appears to take extra time to recognize the disk, the startup (first-play) menu does not show automatically, and I must press the Main Menu button on the remote control to make it appear. Other than that it seems to play ok in that player. Also tested it in 2 other DVD players (a Panasonic and Zenith) and it worked just fine like it's supposed to in them. Also plays perfectly in my computer's DVD player/burner using Windows Media Player v10. I tried burning to Memorex +RW single-layer single-sided disks at 6, 7, & 8Mbps project settings but got the exact same result every time.
    Encore CS3 crashes fairly often during authoring, particularly during imports, and when I go to edit things like calling up a timeline in the timeline panel, dragging footage into an existing timeline, or changing button links in a menu etc.. I have also experienced seemingly random hangs even more often, probably 5 or 6 times as often as a crash. Saving the project after every little change I make, then closing and restarting Encore allows me to make progress albeit at a significantly reduced workflow rate. Accessing Photoshop from Encore appears to be working flawlessly so far aside from the slow load times. Encore hangs sometimes during video transcoding, repeat the process and it works ok. If I try to import a menu from the library after importing my footage files, Encore hangs trying to import it either at the 50% mark or the 99% mark (it varies even with the same exact menu selected from the library). If I import the menu first and the footage after, then no problems. Also trying to render motion menus after importing footage causes Encore to hang, render before footage import and everything works ok. Interestingly enough, previewing my project in Encore's monitor or preview panels works perfectly even in High quality mode -- in fact it operates quite smoothly in comparison to other apps I have tried. Although those footage files that had missing audio tracks on import obviously played silently, I have yet to experience a hang or crash during a preview or when scrubbing through a timeline in the monitor panel.
    The last problem I've seen is with the project cache files. It doesn't always get rid of cache files when stuff is deleted from the project. I was working on one project and surprisingly ran out of disk space. When I tracked it down I found that there were some two dozen copies of a footage file I had repeatedly imported and deleted from the project still sitting in the cache folder. The file was an avi about 2GB so it was taking up some 40 GB of disk space for stuff that was no longer in the project. I tried shutting down Encore and manually deleting all the cache files, and that worked for most of them, but there was one 2GB file that kept reappearing in the cache folder even though it was no longer in the project. The XML file in the cache folder still had references to it in there so I can only assume that was the reason it kept showing up. I eventually had to delete and totally recreate the project from scratch to regain my lost disk space. This included having to sit thru a 6 hour long transcoding session which pissed me off to no end.
    Encore CS3 appears on the surface to be a very powerful, feature rich, and approachable app with a simple easy to use interface, but it is awfully bugged in just about every area I have explored and still needs lots and lots of work for it to be really useful. Frankly for me it is pretty damn annoying that I have invested so much money in this suite only to find several of the apps in it (Encore & Premiere in particular) behaving this poorly. In my opinion every single app in the suite exhibits lousy performance whenever you must do anything at all involving the disk from the time you click to start it up until the time you click to close it down. Several of them are just as seriously bugged as Encore too, and being a long time Photoshop v5.5 user I expected much more from Adobe. Even Photoshop is two or three times as slow now (e.g. it takes about 20-30 seconds to simply create an empty 500x500 pixel image file and almost a full minute to load a 30x60 pixel single-layer gif). So far I have attempted to create 6 DVDs using Encore and after 3 weeks of effort have only succeeded in getting one of them onto a final disk -- and that one is kinda limping to work correctly in my DVD player. Three of those projects became so corrupted while working on them that I had to delete them completely and recreate them from scratch, only to find that I still couldn't get them to completion for one reason or another. Seriously disappointing.

  • Trouble Sending Audio Out of Logic

    Hello,
    I'm having trouble sending audio out of Logic through outputs other than to my monitors. I am trying to reamp a guitar sound and send vocals to a reel to reel using a MOTU ultralite. Also, even though the audio tracks are mono, it only allows the output to be through stereo pairs. Thanks!

    Ok I figure out how to set my outputs to mono but I tried using one of the monitor outs to send audio out and it won't work, I can't even listen on headphones. When I plug my monitor back in, however, it works fine. What isn't working?

Maybe you are looking for