Soundtrack in keynote- problem

I m doing interactive video presentation in keynote and i have a problem with inserting sound track.
Presentation consists of 5 slides, and i want to use music for 4 slides only and 5th one without music( 5th slide is a music video so i dont need sound track)
I will export presentation to quick time-using hyperlinks.
I know how to use soundtrack for the whole presentation or just one slide but i cant find out how to do it only for the part of it and to export it using hyperlinks to quick time. plz help

in this case i cant export the presentation as ONE movie.
let me explain u better.
For example:
when u open your facebook profile u have a couple of tabs:
WALL, INFO, PICTURES, VIDEO.
I WANT ONE SOUND TRACK TO BE PLAYED WHILE I M OPENING FIRST 3 SLIDES( wall,info,pictures), but when i open VIDEO tab , i want it to be without music.
It must be exported to quick time-hyperlinks, coz i m going to use it as my portfolio.

Similar Messages

  • Keynote problem with Narration

    Having migrated from Powerpoint and Windows to Apple I have been using Keynote - an excellent programme - with one major failing - bloody awful narration system - when will Apple introduce a system similar to Powerpoint so that you can run your voiceover across a number of different slides - you seem to have to record a whole piece and hope it stays in sync. Until Apple fixes this obvious failure of Keynote - and I presume they are or have it in hand for the next upgrade - who knows of a sensible workaround to solve this problem? Thanks Francis

    Welcome to the Forum;
    This problem has been lamented and discussed in several threads within this forum. Search on the terms: Narration, Soundtrack, Recording, etc.
    At present, there is no easy solution for keeping everything in sync over a long and/or complex presentation.
    The problem also has been reported numerous times on the Keynote Feedback Forum. When and if any "fixes" will be incorporated into an upgrade to Keynote, however, is anyone's guess.
    Good luck.

  • Play iTunes soundtrack under Keynote with Applescript

    OK, so this isn't a question, more of a solution to a question I was struggling with: how to play multiple songs in the background of a Keynote presentation. What's more, I needed that soundtrack to fade out for certain important slides that had their own audio, but then fade back in (without starting over) when that slide was done.
    I'm creating a standalone presentatoin that will run unattended, looped, during an event. It must be completely automated. It's mostly text slides, which is why I wanted general music underneath. But there are also some slides with videos of their own. I wanted a way to drop the soundtrack at the right time, and then restore the soundtrack afterward.
    My solution is to set up my playlist in iTunes, play it, then run an applescript, and then start the slideshow. The script first sets the iTunes volume to whatever "MAX" volume is in the script. You can edit this to be a MAX volume of 10, 40, 100, etc. The script constantly monitors the slideshow, and when the slideshow gets to any slide with the command "itunesdown" anyhwere in the text of the presenter notes, it triggers an incremental drop of iTunes' volume by 10 units every .1 second until the volume is zero. If you want a slower fade, look for all of the delay values of .1 and make them .2, .3, whatever. It also keeps a lookout for any slide with the text "itunesup" and does exactly the reverse, raising the volume incrementally up to the MAX value.
    I have not explored the possibility of also having the script monitor other text variables to perhaps trigger different playlists. I think that's possible, but for someone else to work out.
    I'm sure there's a more elegant way to code this; I have certain lines of code literally repeated ten times to cover the full range of volume from 0 to 100 and back. I know there's a counter function that could do that in less space. But, again, I'll leave that to y'all.
    Hope this helps someone!
    -Scott
    #ENTER YOUR OWN MAXVOL VALUE ON THE NEXT LINE
    set MAXvol to 80
    tell application "iTunes"
         if it is running then
              set the sound volume to MAXvol
         end if
    end tell
    repeat
      #LOOK FOR VOLUME DOWN SLIDE
         tell application "Keynote"
              set slideNotes to get notes of current slide of first slideshow
              if text of slideNotes contains "itunesdown" then
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
      #Decrease iTunes Volume
                   tell application "iTunes"
                        if it is running then
                             set curVol to the sound volume
                             if curVol > 10 then
                                  set sound volume to curVol - 10
                             else
                                  set sound volume to 0
                             end if
                        end if
                        delay 0.1
                   end tell
              else
      #LOOK FOR VOLUME UP SLIDE
                   if text of slideNotes contains "itunesup" then
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
      #Increase iTunes Volume
                        tell application "iTunes"
                             if it is running then
                                  set curVol to the sound volume
                                  if curVol < MAXvol then
                                       set sound volume to curVol + 10
                                  else
                                       set sound volume to MAXvol
                                  end if
                             end if
                             delay 0.1
                        end tell
                   end if
              end if
         end tell
    end repeat

    Oh - I forgot to cite my work. Thanks to these sites for the inspiration and some of the code
    http://alxndrmlr.biz/2011/06/itunes-increase-decrease-volume-script/
    http://stackoverflow.com/questions/8710892/applescript-detect-what-slide-is-show ing-in-keynote

  • Multiple Keynote problems after update

    Problem #1: Extended delays, program not responded.  Dozens of force quits today. Hours of wasted time looking at a beach ball.
    Problem #2: Images in presentation have been substituted for other images on different slides.  THe preview thumbnail looks correct, but the actual slide is not correct.  Tried copy/paste correct image and keynote swaps out automatically.  Only fix is to copy the image (I don't have all originals) to word, save as picture and then reinsert.  THis is not a good solution as we do these professionally.  Our business model is based on reproducing a template and customizing.  We can't be going to each of 50 slides and putting in the actual original photo.  Has to be a nice, clean duplication process like before. I even have one slide that removed the photo and instead took a text box and substituted that as the photo.  THe text box is now an image and you can't edit the text.  What the **** is that about??? And the issues are so random.  One minute a slide is fine, the next it is all screwed up. 
    Problem #3: Video functionality.  Well, of course all our presentations have videos.  And again, it's a duplicate of a master presentation.  So, if manually adding the original video file is the only workaround, that won't cut it. 
    Problem #4.  Simply can't open a keynote file.  We have one presentation made by my staff memeber.  It opens on his computer.  He saves it to the shared drive like we always do.  I can't open the file.  Won't tell me why.  Just says it can't open. Same version. System crashes.  He resaved once and finally It opens, but about 1/3 of the slides are corrupted with gray boxes and x's on the images and text.  I am now OVERDUE on my deliverable deadline for this client and it makes me look really bad.  I never miss deadlines!!!
    I tried using Keynote '09, but unfortunately all my new projects have been modified in the new version and now I can't open them in '09.
    Creating presentations is my livelyhood.  Keynote is my medium.  It needs to work. PLEASE!!!

    I found a solutions.
    After cancelling my presentation I continued to look for a way to open my files. If you open by selecting the file and clicking it will open with the Mavericks update to Keynote. However, under 'Open With' you can choose the older version of Keynote. Or, if you go to the Applications folder you can find Keynote there.
    Good luck.

  • URGENT-  I need help: Soundtrack Pro Freezing Problem!!

    I just sent my FCP project to a multitrack project in Soundtrack Pro, but when i want to work on the Soundtrack Pro project, everything keeps freezing. its dead slow!
    i can barely do anything with it!
    whats the problem? and how can i solve it?

    Couple of possibilities. One, your media files are huge. STP reference the entire media of a clip edited in FCP . . . not just the edited portion. That can result in some large files being brought over. Also, when you send a clip over, use the base layer option if you can, or export an mp4 to bring in to STP.
    If you're ready to do the post audio work on a finished FCP project, export an omf file. Close FCP, then open the omf file in STP. That can help.
    Other "obvious" but still good to review considerations . . . have enough RAM? Is there enough disk space? Are you using a different media drive than where the system is located?

  • PowerPoint to Keynote problems

    I downloaded a PowerPoint presentation and opened it in keynote and now I can't hear any of the embedded audio. I have an old PC with office and was able to hear the audio on that but I want to use keynote and my imac. Is this a problem with converting the PPT to Keynote? Can it be fixed?

    I understand you don't own any Microsoft products, but have you also stated that "but the presentation MUST be given in PowerPoint" which I thought meant that at some point you have access to a computer which does have PowerPoint, even if it's only a few minutes before the presentation. I apologize for the assumption.
    The point being made is that Keynote is not a substitute for PowerPoint if your final output is going to be PowerPoint. If you have not opened the file in PowerPoint, then you don't know what it will look like in PowerPoint. As Tulse has posted, there are free alternatives to PowerPoint that would be better than using Keynote. BUT the same caveat still stands.
    I love using Keynote, have used it since it was first released and, enjoy the freedom to create the interface gives me. However, the right tool for the job is sometimes PowerPoint.

  • Soundtrack Pro / Flash problems

    Since installing Soundtrack Pro, I have had problems with Macromedia Flash.
    I installed Soundtrack Pro yesterday and imported MP3 voice-over files for correction & improvement and saved them as .aiff files for import into a Flash .FLA file on my MacBook Pro.
    On importing the files, Flash began to behave strangely - notably, impossible to play the .FLA file to check it (file works OK when published to an .SWF file). Also, Flash refuses to import .WAV files created in Soundtrack Pro.
    However, Flash works OK on a G4, where I have not installed Sountrack.
    I have tried repairing permissions / deleting the Flash preferences file / reinstalling Flash... but these have no effect.
    I would be grateful for any help/suggestions.
    Best regards,
    Garry

    Thanks for the reply. I discovered what the stuttering problem in Soundterack was myself, by running around the Internet doing searches. It turns out that these G5 quad-core Macs have a defect in their optical ports on the back of the case. Light leaks in there and causes problems in Soundtrack. It can be cured by plugging both ends of a toslink cable into the ports, to prevent light from getting in there. One of these little cables only costs a few dollars on Amazon.com. I bought one and plugged it in, and the problem disappeared. Soundtrack now works smoothly.
    It's too bad that programs such as Final Cut 7 and Soundtrack were simply abandoned by Apple, and declared obsolete and irrelevant, because they can still do excellent work. I have another, Intel Mac with the latest (as of last summer) Adobe suite on it, including Adobe Premiere, and yet I can do many things better in Final Cut than I can in Premiere (for one thing, Premiere can only open one project at at time. On my current video project in Final Cut 6, I have three projects open at the same time and am moving clips between them easily). However, now that Adobe has moved to rental versions of their software, my copy of Premiere is also obsolete, and gets no updates or improvements, just like Final Cut 7.
    So I'm making my videos on my obsolete Mac G5 using obsolete software, Final Cut 6 and Soundtrack. I guess I'll remain a defiant holdout for as long as I can.

  • Can you help with keynote problem??

    I created a keynote presentation on my mac and now I want to be able to run it on my PC that has Office 2003.
    I exported it into a powerpoint file and burned it on a disc,but when I try to play it on the PC the music does not play and the majority of photos show up completely black.
    Is there a way to work around this problem?
    Thanks!
    Dana

    i do so, but the problem is still there. it seems that keynote dominates the date-/language-/formatting. yesterday i tried to change my system language to us english. i dont know anymore if it was better?! should i try to change the system to britisch english? the keynote "auto-correction" ***** ;(
    what you are showing is actually what i want, i am perplexed why this wont work for me?!
    notice, when i copy/paste the values from openoffice to a keynote table, all is ok.
    a copy/paste from this table into data-editor is the same effect like directly from openoffice...
    01
    02
    03

  • Keynote Problem with Movies

    I wonder if anybody can help with a weird problem. I made a two-slide presentation I'm keynote that included a music track from iTunes. I exported to QuickTime and it worked perfectly. I uploaded the movie (.mov file) to Dropbox and the audio dropped right at the point where the second slide would have started. I then uploaded the the movie to Vimeo and the audio dropped in the same way. So to recap, the audio in the movie fully played out when I opened it in QuickTime on my Mac but dropped halfway through when I ploaded to Dropbox and Vimeo. Does anybody know why this is happening and how to fix it?
    Much appreciated.

    Probably because the iTunes file has an embedded  Digital Rights Management certificate which prevents unauthorised publishing of copyright music to web sites such as Youtube.

  • Keynote problems OSStatus error -12945 when trying to play videos

    I am trying to run a Keynote version 5.1.1 (1034) presentation on my new machine which has Keynote 6.1. Everything works except the embedded videos which give me this error notice OSStatus error -12945.
    Does anyone have any advice? I've got to give this presentation in a few days. Yikes!

    Use Keynote version 5.1 and update to version 5.3
    Transfering version 5 files to Keynote version 6 will cause problems.

  • Keynote problems with keyboard shortcuts

    Is anyone having problems with keyboard shortcuts not working with Keynote?  Had this problem (and a host of others) since the upgrade to Mavericks and the latest Keynote.

    Hello,
    I can replicate all by problem number 1. Once the PDF loads, I can use the arrow keys to scroll up/down. All of the other problems you mentioned haven't been implemented.
    You're certainly welcome to send feedback to Apple, though!
    -Ryan

  • Soundtrack Pro "Unexpected Problem" Quits

    This is driving me crazy...
    Since installing Soundtrack Pro (as part of the Studio 2 upgrade), I've had a persistent problem: If I select any audio file listed in the browser, then move OUT of Soundtrack Pro (in other words, bring another application to the foreground), when I return to Soudtrack I get an error:
    Unexpected Problem
    NSInvalidArgumentException
    * -[AudioSource model]: selector not recognized [self = 0xb378fe0]
    ... and it only gives me the option to quit, but it doesn't generate a "send problem to Apple" report. I can restart fine, and no other apps seem to be adversely affected.
    It's the same every time. If I DON'T have an audio file highlighted, it doesn't error.
    Any Thoughts?
    Hardware:
    Power Mac G5 (CPU: PowerPC G5)
    Number Of CPUs: 2
    CPU Speed: 2.3 GHz
    L2 Cache (per CPU): 512 KB
    Memory: 2.5 GB
    Bus Speed: 1.15 GHz
    Boot ROM Version: 5.2.4f1
    System Version: Mac OS X 10.4.10 (8R218)
    Kernel Version: Darwin 8.10.0
    Graphics/Displays: ATI Radeon 9600 (ATY,RV351) VRAM: 128 MB

    Do you have FxFactory plug-ins installed?  I turned these off by just un-checking them in the FxFactory window that pops up when you double-click the plug-ins, and the errors with Soundtrack went away completely.
    Hope this helps.
    -Drew

  • SL and Keynote problem

    I cannot import ppt files or video files. I use SL and the updated version of Keynote. The result is that I cannot use my presentations at all since upgrading to SL.
    Anyone an idea? This seems like a Microsoft experience...

    I have had my macbook bro for about 4 months. I had only this problem which is that trash wont delete and I had to use terminal command to delete them.
    If you were having a problem with your machine, you should not have installed a system upgrade. It is always advisable to resolve any problems beforehand, as installing system updates/upgrades on a damaged system can only make the problems worse.
    NOW after using Snow Leopard i hve these problems
    1- MSN won't work
    In what way?
    2- Amsn won't work and that's because it's not compatible with SL
    That is a third-party product, and not Apple's responsibility. Programs that quit working in Snow Leopard were most likely doing something skanky that they weren't supposed to be doing. If your workflow depends on this program, then you'll have to downgrade to Leopard until the developer gets it working on Snow Leopard.
    3-trash still won't delete by the normal way.
    What did you do to try to solve this in Leopard?
    4-skip forward and skip backward don't work
    Where?
    I don't know how to get rid of SL and use the version before using SL, does anyone know how?
    You'll have to do an Erase & Install of Leopard, unless you have a full backup of your system just before the upgrade. If you don't have such a backup, you should be sure you make one before installing any system update in the future. Something can always go wrong, and not having a backup is extremely risky.

  • Soundtrack Pro recording problems

    I have soundtrack 2.0.2. Everything was fine until I downloaded and installed "ProKit" from Software Update yesterday (2-6-08). Now when I try to record, it stops recording on its own after only a second or two....sometimes it only records a few frames. I am running leopard, but soundtrack was working fine until the update. Is anyone else having this issue? Thanks in advance.

    i also use STP 2.0.2. i have not done any recording up until now and i am frustrated by the same issues reported below. I will start to record audio and after approximately a second the audio record stops. I also use a macbook pro 2.4 and recording is not a problem. not having any more information than below and my experience with the intel laptop i would speculate it may be a PPC issue. any ideas would be very helpful. thanks

  • Making a soundtrack for keynote 3

    I am trying the find the simplest program to create a soundtrack from multiple songs to play in a Keynote Presentation. Any ideas?

    Logic Express allows you to pull in your Keynote QT export as a floating track, and add in and time as many tracks as you want, coordinated with your slides, which play through as a track. (You may have to adjust the length of your slides after). It may be one audio import on track, but everything is mixed on Logic and timed with the individual slides. I do my own music, loops etc. but I am sure you can pull in an audio track, although I haven't done this, so am not positive. Also, you can then convert your Keynote/QT movie to flash using Sorenson. Perhaps other can fill in some details. With Logic you have more mixing controls etc. Logic is more complicated than Garageband. However, you can sketch it out in Garageband and then refine it in Logic with your QT movie.
    G5   Mac OS X (10.4.4)   2 mg RAM

Maybe you are looking for

  • Passing report filter function in Open Doc URL

    Hi All, I have a requirement that the values entered in the input control on one report the same values should be passed to another report.For this I created a document linking from the first report to the second and passed ReportFilter([name of the

  • "Can't open file - not a valid pdf"

    Hi, This seems to have been asked before but I can't find an answer!! I have a small app that i use for work which essentially just links to pdfs stored on a wordpress site All has been working well until recently when android phones can no longer op

  • Problems organizing pictures

    I have a problem, I am sure that we all have or face. I have a iMac as well as my MacBook Pro, plus iPhones Apple Tvs and iPads. I use lightroom 5 for photo organization (yes I love the new lighroom) but the common problem I face is that I can never

  • 101 Problems with my iPod Touch and iTunes...Almost

    It really feels like I have 101 problems with my iPod touch and iTunes. For some time now my iPod Touch have been using alot of batterypower and the battery is often discharged very fast. It discharges alot faster now than when I brought the Touch. A

  • New 7D has trouble talking to 430Ex speedlight.

    Regardless if I have the flash control set to external only or both. I turn on the external flash, it show the channel etc. I pop up the on camera flash and enable both. Standing right in front of the 430 and pressing a test flash, nothing . Going ar