Audio Files "Stacking Up" on certain slides

Working on a movie...200 slides...have listened to the audio
file and sounds fine...each slide shows an audio clip attached and
each file can be played slide by slide. However, when I publish the
movie as a .exe file or even F4 to preview the movie, the audio is
a mess...the audio continues while the slides hang up. I printed
the bandwidth summary...and it shows in the audio column (for
example) 940.8 KB on one slide with 0.0 KB on the next 7 slides,
228.6 KB on next slide with following 5 slides 0.0.
I checked the settings..."Pause until user clicks" is
UNchecked. I have numerous click boxes on the slides (and it does
seem to be those that are "collecting" the audio files), but all of
these are displayed for "rest of slide" and do not require a click.
I'm using these in a TOC on the left side to "Jump to" other
slides. And mysteriously...probably something I'm doing wrong...it
is the slides designated as "Jump to" slides that have the 940.8 KB
of audio, etc. Not one of them is 0.0.
Any ideas on how I can unscrew this mess?
Thanks!
B J

Hello B J
quote:
Originally posted by:
bjspeed
Working on a movie...200 slides...
The first thing that I would recommend is to try split the
movie into a series of smaller pieces. I know that this isn't what
you will want to hear but in general, Captivate does not handle
this volume of slides well.
Another point that you might like to consider, is that a
movie of this size and ulitmately length might be considered
information over-load for your prospective learners.
If spliting the movie into a series of movies doesn't make
any difference then please post each of the files and I (or another
of my fellow ACE's) will be happy to take a look.
Regards,
Mark

Similar Messages

  • How do I apply an audio file to a group of slides?

    I am putting a keynote presentation together for an award show.  I have a voice overs (VO) audio file for each nominee.  Each nominee has 5 slides so I need to apply the VO file to those 5 slides.  Then, I need to apply a separte VO audio file to the next 5 slides and so on.  Is this possible?  If so, how do I do this?

    You need to break up your presentation into one presentation per nominee with a hyperlink to the next presentation set on the last slide. This will allow you to insert the audio voice over into the presentation to play across the multiple slides for the nominee. Place the audio using the Keynote Inspector > Presentation > Audio and drag the voice over file into the soundtrack well.
    To set the hyperlink, you need to place an object on the last slide of each nominee set that when clicked will hyperlink to the next Keynote file. With the object selected use the Keynote Inspector > Hyperlink > Enable As A Hyperlink (ON) > Link To: Keynote Slideshow (in pull down menu) > navigate to the next file and select it.
    Note: All Keynote presentation files should be opened prior to starting the overall presentation so that they start when the link is clicked, otherwise you will see an attempt to open a file, but the show will stall.
    The object can be "invisible" with no fill and no stroke, but it can be a hard target to find on the fly. I would suggest placing it over a logo or other repeating graphic element.

  • Determining audio files and corresponding slide # in Presenter

    It is a big challenge to edit audio files.  Presenter does not sequentially number audio files, they appear to be random.  Which means you have to hunt and peck to find the correct audio file to edit for the appropriate slide.  Any fix for this?

    See, now we're getting somewhere!
    When I wrote that line about having corresponding audio files after publishing (ex: a24x[some number].mp3), I was referencing the .mp3 files you get as a result of publishing the PPT deck using the Presenter plug in.
    However, as you wrote:
    "...Each of these mp3 files also has a corresponding *.lthmb file (for example 1088225537.mp3 has 1088225537.lthmb)..."
    what you're looking at is the folder that Presenter creates the moment you start incorporating audio using the recording feature that Presenter offers (the same would be true if you imported audio files using Presenter as well.)  And, as you have found out, trying to get a handle on which audio file goes w/ a particular slide is horrendous at best.
    Okay, may I suggest another tactic?
    Let's try this: Publish the PPT deck you have.  What you'll end up with is a set of files and folders, but I want you to look for the data folder that's created as a result of the publishing process. (Unless you specify where you're publishing to, Presenter will publish to a directory called "My Adobe Presentations" by default, so you may have to look there on your harddrive)  Inside the data folder will be a list of mp3 files, which, if everything goes smoothly, should make it much, much easier to see which audio is used by a specific slide.
    Here's what I mean: for example, after publishing, I have a data folder and inside I found the following file: a24x9x3.mp3  As I double click the mp3 file (which causes it to play using Windows Media on my laptop), I can hear that it corresponds to my slide 9 in my PPT deck.  And there's corresponding mp3 files for each and every slide I have in my deck.  I'm clicking another file (wouldn't it be nice to see what I'm doing???) a24x20x3.mp3, and that file corresponds to my slide 20 content in PowerPoint.
    So again, give publishing in PowerPoint a shot and see if that makes it any easier.  Well...not nearly as easy as recording in Audition/Soundbooth/Audacity, but it's close enough to hopefully dig you out of that hole you're in now.
    Rob
    http://www.robrode.com/yabb

  • How can determine the duration of an audio file

    Hi,
    i'm making speech recognition project using java. i can capture sound by michrophone and playback it. the type of the sound is .wav.
    my question is how to determine the recording duration (for example: determine the duration for 0.25 second) because i must recorded syllable,the assumtion is needed less than 0.5 second to say a word. and then.. can this wav file be changed into... binary or integer ?
    thanks for your help

    FYI I'm newbie in Java,
    Yes, I want to limit the audio file lengths to a certain value. What should I do?
    I have read wav file using an AudioInputStream, for audio format I'm using sampleRate = 8000.0F and sampleSizeInBits = 8. My friend said if I used 8 bit for sampleSizeInBit (resolution in amplitude) the binary file should be -128 till 127 in range according to the bit. I try this code and the result is binary file which is zero, positive, and negative.
    the code
    try{
    audioInputStream.read(audioBytes);
    for (int i=0; i<audioBytes.length;i++){
    System.out.println(audioBytes);
    catch(IOException ioe){
    System.out.println("Error"+ioe);
    I'm not sure that the code is right, but it works. Should I change the audioBytes into integer before? I try this code but it doesn't work.
    int a = new int[audioBytes.length];
    for (int i=0;i<audioBytes.length;i++){
    a[i] = new Byte(audioBytes[i]).intValue();
    this binary file has been printed in console (I’m using texpad). So, how I can write that to file.txt? I'm using FileoutputStream but it doesn't work correctly. Here is the code
    FileOutputStream fos = new FileOutputStream(strFilePath);
    {audioInputStream.read(audioBytes);
    fos.write(audioBytes);
    catch (IOException ioe){
    System.out.println("Error"+ioe);
    When I open file .txt is read as character like this üüüüüüüüüüüüûüüüûüûûû ||||||| ||||||| ||||||||||||||||||||||||||||| &#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746;&#1746; (like using alt plus number)
    Edited by: anasfr on Mar 19, 2009 9:02 AM

  • Can't add audio files (PSE 5)

    PSE 5 won't allow students to add audio files(WAV or MP3) to slide shows. Error message is as follows. "...system does not have required compressor/decompressor (codec) installed."
    I'm working in a lab situation. Only 2 of the 24 computers are having this issue. Help!

    Try importing all those music files into organizer and see if it can play those files. If organizer is able to play these files, you can add these files to slide shows.
    Else install some quick time codecs and try including these music files again.
    Regards.

  • Play Audio Files in Pro7

    I loaded QT Pro 7 in Win2K and I can't play audio files. The progress pointer slides across but no audio and no indication on the little bar graphic thingy.
    Is it the file association? The sound card seems to be set up properly.
    Thanks,
    Bill

    Safe Mode,Wave out only should release so it could be a indication of the problem.
    If you go to C:\Documents and Settings\All users\Application Data\Apple Computer\Quicktime, Quicktime qtp is the file for QT preferences. If you delete Quicktime qtp a new one will be created when you run QT again.
    It will also be removing your Pro Key registration, so you'll want to have that before deleting qtp so you'll be able to re-enter it to get your Pro features back.
    Give it a try, if it don't solve the audio, I can suggest a few more things to try within the XP OS that relate to audio.

  • Audio file widget

    How about a widget to be able to ad an audio file either to run with slide shows or when clicked...

    You use the table widget here :
    http://musewidgets.com/collections/all/products/table-maker
    Additionally for adding audio files ;
    https://forums.adobe.com/message/6429361
    https://forums.adobe.com/message/6276219
    Thanks,
    Sanjit

  • How to prevent an audio file to play the second time the users enter the screen?

    Hi there
    I have a request from my client. She wants the audio file I have on one slide not to play again when the users return to that screen. Is it possible to do that using conditions? I searched the forums but couldn't find anything like this.
    I am using Captivate 5.5.
    Thank you in advance.

    I explained that both in workshops for advanced actions and in a presentation (Lectora vs Captivate) at DevLearn. In this blog post an example, with short explanation can be found:
    http://lilybiri.posterous.com/playtime-with-audio-and-widgets
    The idea is to link the audio not to the slide but to an 'invisible' object (I even have a Highlight box style for that). When entering the slide the first time you show the object and audio will play, when entering afterwards it will be hidden again. This implies the use of a user variable to track the first visit, and a conditional action. If you need more info, just ask for it.
    In CP6 another approach would be possible, using the new statements Play audio and Stop Triggered Audio.
    Lilybiri

  • Import audio files and assign to slides during import

    There must be a way if Articulate '09 can do this.....
    I have exported 42 audio files into mp3 format using the Advanced Audio Management Panel in Captivate 6. I ran these through a tool to normalize the volumes (MP3gain).
    I now want to go back to the original file, delete the old audio, and import and assign the new files to each slide without having to drag each one from the library to the individual slides.
    How can I do this? (The Audio Management Panel would seem like the most likely way, but I only see an export, no import function.
    Thanks in Advance.

    Hi there
    Captivate 3 was certainly Adobe. But Captivate 3 is about as similar to Captivate 7 or 8 as a 2000 model vehicle is to a 2007. Things change. Captivate radically changed. Version 5 changed the playing field dramatically because Adobe re-wrote the application and the entire interface changed.
    Cheers... Rick

  • How can I control whether or not an audio files plays when a slide starts?

    I am putting together a course and have a welcome audio that plays automatically when the user begins the course. Since that slide has a list of the modules that will be in the course, I would also like to use it as one navigation option - click the "Menu" link on any slide and return to this page.
    The problem: Every time the page is hit the audio plays.
    The question: How can I set the audio so it only plays the first time the page is entered but not again?
    I have created a variable called "PlayWelcomeAudio" and set it to "Y" initially, then have an Advanced Action script that changes the variable to "N" when it is clicked (progress through the course is linear so there is only one option available to the user at this point. Clicking that link opens the next page and sets "PlayWelcomeAudio" to "N".
    I can see that the variable has been set correctly (when I start it is "Y" and when I come back it is "N") but I'm not seeing anyplace where I can set the audio file so it doesn't play.
    I tried setting cpCmndMute to "1" but that didn't work because it is apparently a global setting and I didn't get any audio playing anywhere after that.
    I'm not looking to pause the timeline or anything like that. I just want the audio to play the first time but not the second and subsequent times that page is hit.
    Thoughts? Suggestions?
    Thanks.
    Michael

    Attach your welcome audio to an object that is not seen (e.g. a highlight box set to 0%) and use your Advanced Actions and variables to HIDE this object ON SLIDE ENTER if the user returns to the same Menu slide at a later point in the course module.
    This should mean that the first time the user gets to that slide, the audio will play.  But all subsequent times they return to that slide, the object will be immediately hidden on entering the slide, which will mean that the audion does not play and all the user sees are the menu options.
    Your alternate strategy would be to have two slides that look almost the same.  The first one has the audio, and the second one doesn't.  Your TOC item for Menu, and any other links in the project that point to the Menu, would go to the second slide without audio.  The user will be none the wiser as long as you work out the navigation.

  • How can I add an audio file to each slide when I export to HTML Keynote 6.2

    How can I add an audio file to each slide when I export to HTML Keynote 6.2
    I am trying to create an audio slide show instead of a movie

    Drag and drop one music files onto each slide then export. (File > Export > HTML)

  • Is it possible to sequence audio files on one slide

    Problem:  One audio clip starts playing before the previous audio clip has ended.
    Setup: On one slide I have multiple audio clips, dragged in from the media browser. Using the build tools in the inspector I've set up clip 1 to play after an image appears, so the first audio clip  is build 2. Then for the second audio clip I set it up as build 3 to start automatically after build 2.
    The result is that the both audio clips start at the same time. The only way I can get the clip2 to start after clip1 is to add a delay to start of clip2.
    I tried inserting a "build out= stop audio" after clip 1, adding enough duration to make sure that the clip could play in its entirety but that appears to cause clip1 to not play.
    I'd appreciate any pointers on how to sequence these audio files, preferably within keynote because I'm attempting to get the audio to sync with images appearing on the slide.
    Thanks.

    The original post had it correct:
    The result is that the both audio clips start at the same time. The only way I can get the clip2 to start after clip1 is to add a delay to start of clip2.?
    open the build order window;   Animate > Build In > Build Order
    In this example the first sound file is set to play after the shape has built in
    the second sound file is set to play with a delay of 3 seconds because the first sound file has a duration of 2.5 seconds, this plays the file immediately after the first is finished playing.

  • Slide Action on Exit Cancelled by Length of Audio File

    Captivate 8.0
    Responsive Project
    Status:  Solution to problem works but makes no sense
    Problem:  Slide actions on exit designated in the Properties Inspector do not function.  Although the "jump to slide" action was selected, the transition at the end of the slide moves to the next slide. I encountered this problem as I was developing a series of slides that would supplement a single beginning slide.  Using click boxes I wanted the learner to be able to click on an item, go to a slide with more detail, then return to the original list on the starting slide.  I set the supplemental slides up in the Property Inspector--Actions to "Jump to slide" and selected the beginning slide number.  When I ran the project, the click boxes moved to the correct slides but the supplemental slides did not return to the beginning slide.  They only transitioned to the next slide.   
    Solution:  This makes no sense to me and is the source of my question.  I'm using text-to-speech as a temporary method of making a rough cut at timing while I am waiting on narration files.  The audio files created by text-to-speech usually run to the end of the slide and are exactly the same length as the slide.  Grabbing at straws to fix the problem, I added 0.2 secs to the slide length so the slide timing was slightly more than the audio file.  Voila!  The selected action (jump to slide X) functions as expected.  I made the same change on the balance of seven slides and the entire routine works as designed.  I have not tested slides using imported narration or narration recorded within Captivate to see if the same problem presents. 
    Why would this be?  Why would the length of an audio file prevent an exit action from functioning? 

    Lilybiri answered this on another question discussion 
    "Slide on exit action conflicts with button action in Captivate 5.5"

  • Imported audio files are repeating same audio on objects in a slide

    Hi
    I can't find anything here that mentions the problem I am having.
    I am using Captivate 4. And Neospeechs desktop VoiceText program to record audio files outside of Captivate. They are saved as WAV files, then I import the audio into Captivate.
    I have various objects on a slide. For example, I have six text Rollover Captions. When you roll over them, some text is displayed. I have attached my audio files to these rollover objects. So, I would have audio1.wav, audio2.wav, audio3.wav etc and these play when you roll over the captions.
    The issue I am having, is that when I Publish or Preview the project, sometimes the wrong audio file is playing upon rollover. Usually the first couple of caption/file combinations will work, so I get audio1.wav for caption1 and audio2.wav for caption2, but then say for captions 3,4,5,6 I am still getting audio1.wav playing!
    I have doubled checked everything and the correct audio files are attached to the captions. And they all play correctly in Edit view.
    I've just noticed this has happened again in a different Captivate 4 project, where I have about 6 lines of Text Animation, with an audio file for each text animation. They have been distributed across the timeline so that the text animations do not overlap, and yet I am still hearing imported audio files repeated.
    If anyone can help to shed any light on this, i'd be grateful, as I'm totally stumped!
    thanks
    Lolly

    Have you got the correct selection buttons at the bottom left of the Files panel enabled under Sort by:?

  • PSE 9 Organizer error codec trying to add an Elements audio file to slide show

    I am using PSE 9 to build a slide show. When I add audio, I can use mp3's  from my music library in the slide show without any issues ...
    but I am getting the following error when I try to add an Elements audio file (example " A _Taste_Of_Sicily.mp3)
    This is the Organizer error message:
    "Unable to add the audio file (C:\ProgramData\Adobe\ElementsOrganizer\8.0\Music\A_Taste_Of_Sicily.mp3).
    The selected file cannot be played because your system does not have the required compresser/decompresser(codec) installed."
    I had PSE 8 and upgraded to PSE 9 - I noticed the error file detail shows 8.0 - Is this my problem - maybe an incomplete upgrade ?  (I've made several slideshows mixing photos and music, on an older computer using PSE 8 and never ran into this issue.)
    Below is my system info in case that helps:
    OS=Windows 7 Home Premium 64-bit on an HP Pavillion dv7
    Intel(R) Core(TM) i5-430M Dual Core processor (2.26GHz, 3MB L2 Cache) with Turbo Boost up to 2.53GHz
    8GB DDR3 System Memory (2 Dimm)
    500GB 7200RPM SATA Hard Drive with HP ProtectSmart Hard Drive Protection
    512MB ATI Mobility Radeon(TM) HD 5470 switchable graphics
    IDT High Definition Audio CODEC
    Thanks for any help !

    beccarie1 wrote:
    This is the Organizer error message:
    "Unable to add the audio file (C:\ProgramData\Adobe\ElementsOrganizer\8.0\Music\A_Taste_Of_Sicily.m p3).
    The selected file cannot be played because your system does not have the required compresser/decompresser(codec) installed."
    Does that file extension really have a space in it?  If so, remove the space.
    Ken

Maybe you are looking for

  • Can anyone actually help me with the up-to-date program???

    First off, I want to state that I have been an Apple customer for years owning multiple iPhones, MacBooks, and iPads.  Although I've had some minor glitches in the past, they were all fixed with relative ease.  I recently purchased (8/11/12) an iMac

  • FCC error :java.lang.Exception: Column value '   ' too long

    Hi all, I am using FCC on receiving File adapter... While executing i am getting this error in CC monitor com.sap.aii.af.ra.ms.api.RecoverableException: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML

  • Icloud mail, some forwarded messages not delivered

    Dear all, I do forward my two professional mailboxes to icloud.com so I have all my emails centralized in a single location. Since a few days, some of the messages forwarded are not delivered to my icloud inbox; I assume they are blocked by the spam

  • IPad mini music problems?

    I noticed when I recently got my iPad mini that when I tried deleting songs! I can only delete my foreign music.  It won't let me delete any English music... I don't know why, but does anyone know why this might be happening or how I can fix it?  It

  • What's the difference in this redirect snipits?

    1. response.sendRedirect("/ecad/index.jsp"); 2. RequestDispatcher dispatcher = getServletContext().getRequestDispatcher("/CreateNewJob.jsp"); dispatcher.forward(request, response); This is my first cup of JSP/Servlets. I've been playing with a form t