Can you use multiple songs for a slide show in iphoto ios 2.0?

I want to prepare a 10 minute slide show that uses more than one song.   It seems you can use a playlist using iphoto for mac (and I have seen that in other discussion threads) but what about iphoto for IOS on an ipad?   It seems to let me only use one song.   I am on IOS7 and using the lastest iphoto for ipad (v 2.0)Any suggestions out there?  Thanks

You are welcome. Have a look at the GarageBand Help to get started.
Basically you need to
Create a new project - select an empty project template.
Open the Media Browser and drag the songs from your iTunes playlist into the track area.
Use the "Share" menu to send your new sound track to iTunes.
This screenshot is from GarageBand 10.0, but in GarageBand '11 it would be similar.
Just in case that you want to add some sound effects to the soundtrack, like rain or thunder, you will find the clips in the Loop Browser:
Good luck for your slideshow

Similar Messages

  • Can you use one PC for 2 different Ipods, with out erasing the others music from Itunes?

    Can you use one PC for different Ipod touch's , with out erasing the other persons Itunes music?

    Yes.  See:
    How to use multiple iPods, iPads, or iPhones with one computer

  • Can you have multiple users for one account?

    Can you have multiple users for one account? if so how do you set it up.
    We are using it for our department and it would be great to see who created what form instead of it being all one name.

    Each person should have their own account. You can easily share the forms with other people in your department. You will be able to see who the author of the form is.
    More information on how to share :
    http://forums.adobe.com/docs/DOC-2462
    Information on how to copy a forms to a different account :
    http://forums.adobe.com/docs/DOC-1390
    Hope this helps
    Gen

  • Can you use multiple plugins on one piece of media?

    can you use multiple plugins on one piece of media?
    ...so for example have one plugin for a UI control bar, another for tracking, and another for advertising?
    If this is possible how? What types of plugin would each plugin be and what sort of media element would be required?
    Or is this not the correct approach? If not what would the correct approach be?
    Thanks in advance for support.

    I have got this plugin to set it's proxiedElement.
    To do so, I needed to follow David_RealEyes advice too.
    But I still can not acheive what I set out to find out, all I was trying to do was trace the current time of the videoElement, to begin to understand how plugins work. Can anyone advise please? Thanks in advance for support.
    I thought to acheive this I would just need to add  a listener for like this:
    dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE,  onTimeChange);
    Then write the function like this:      
    private function onTimeChange(e:TimeEvent):void
                 trace('**********onTimeChange: '+ e.time)
    ...But this doesn't work.
    What am I doing wrong?
    Here's the class now for the TraceListenerProxyElement
    package
        import org.osmf.elements.*;
        import org.osmf.events.*;
        import org.osmf.media.*;
        import org.osmf.metadata.*;
        import org.osmf.traits.*;
        public class TraceListenerProxyElement extends ProxyElement
            public function TraceListenerProxyElement(wrappedElement:MediaElement)
                trace('TraceListenerProxyElement')
                super(wrappedElement);
            // Overrides
            override public function set proxiedElement(value:MediaElement):void
                trace('override set proxy')
                trace('value: ' + value)
                if(value)
                   super.proxiedElement = value;
                   trace('proxied element set')
                   enableListeners()
                super.proxiedElement = value;
                trace('proxied el: ' + proxiedElement)
            private function enableListeners():void
                trace('enableListeners')
                dispatcher = new TraitEventDispatcher();
                dispatcher.media = proxiedElement;
                dispatcher.addEventListener(AudioEvent.MUTED_CHANGE, processMutedChange);
                dispatcher.addEventListener(AudioEvent.PAN_CHANGE, processPanChange);
                dispatcher.addEventListener(AudioEvent.VOLUME_CHANGE, processVolumeChange);
                dispatcher.addEventListener(BufferEvent.BUFFER_TIME_CHANGE, processBufferTimeChange);
                dispatcher.addEventListener(BufferEvent.BUFFERING_CHANGE, processBufferingChange);
                dispatcher.addEventListener(DisplayObjectEvent.DISPLAY_OBJECT_CHANGE, processDisplayObjectChange);
                dispatcher.addEventListener(DisplayObjectEvent.MEDIA_SIZE_CHANGE, processMediaSizeChange);
                dispatcher.addEventListener(DRMEvent.DRM_STATE_CHANGE, processDRMStateChange);
                dispatcher.addEventListener(DynamicStreamEvent.AUTO_SWITCH_CHANGE, processAutoSwitchChange);
                dispatcher.addEventListener(DynamicStreamEvent.NUM_DYNAMIC_STREAMS_CHANGE, processNumDynamicStreamsChange);
                dispatcher.addEventListener(DynamicStreamEvent.SWITCHING_CHANGE, processSwitchingChange);
                dispatcher.addEventListener(LoadEvent.BYTES_TOTAL_CHANGE, processBytesTotalChange);
                dispatcher.addEventListener(LoadEvent.LOAD_STATE_CHANGE, processLoadStateChange); 
                dispatcher.addEventListener(PlayEvent.CAN_PAUSE_CHANGE, processCanPauseChange);
                dispatcher.addEventListener(PlayEvent.PLAY_STATE_CHANGE, processPlayStateChange);
                dispatcher.addEventListener(SeekEvent.SEEKING_CHANGE, processSeekingChange);
                dispatcher.addEventListener(TimeEvent.COMPLETE, processComplete);
                dispatcher.addEventListener(TimeEvent.DURATION_CHANGE, processDurationChange);
                dispatcher.addEventListener(TimeEvent.CURRENT_TIME_CHANGE, onTimeChange);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_ADD, processTraitAdd);
                proxiedElement.addEventListener(MediaElementEvent.TRAIT_REMOVE, processTraitRemove);
            private function onTimeChange(e:TimeEvent):void
                trace('**********onTimeChange: '+ e.time)
            private function processAutoSwitchChange(event:DynamicStreamEvent):void
                trace("autoSwitchChange", event.autoSwitch);
            private function processBufferingChange(event:BufferEvent):void
                trace("bufferingChange", event.buffering);
            private function processBufferTimeChange(event:BufferEvent):void
                trace("bufferTimeChange", event.bufferTime);
            private function processComplete(event:TimeEvent):void
                trace("complete");
            private function processCanPauseChange(event:PlayEvent):void
                trace("canPauseChange", event.canPause);
            private function processDisplayObjectChange(event:DisplayObjectEvent):void
                trace("displayObjectChange");
            private function processDurationChange(event:TimeEvent):void
                trace("durationChange", event.time);
            private function processLoadStateChange(event:LoadEvent):void
                trace("loadStateChange", event.loadState);
            private function processBytesTotalChange(event:LoadEvent):void
                trace("bytesTotalChange", event.bytes);
            private function processMediaSizeChange(event:DisplayObjectEvent):void
                trace("mediaSizeChange", event.newWidth, event.newHeight);
            private function processMutedChange(event:AudioEvent):void
                trace("mutedChange", event.muted);
            private function processNumDynamicStreamsChange(event:DynamicStreamEvent):void
                trace("numDynamicStreamsChange");
            private function processPanChange(event:AudioEvent):void
                trace("panChange", event.pan);
            private function processPlayStateChange(event:PlayEvent):void
                trace("playStateChange", event.playState);
            private function processSeekingChange(event:SeekEvent):void
                trace("seekingChange", event.seeking, event.time);
            private function processSwitchingChange(event:DynamicStreamEvent):void
                trace("switchingChange", event.switching);
            private function processVolumeChange(event:AudioEvent):void
                trace("volumeChange", event.volume);
            private function processDRMStateChange(event:DRMEvent):void
                trace("drmStateChange", event.drmState);
            private function processTraitAdd(event:MediaElementEvent):void
                trace("Trait Add: " + event.traitType);
            private function processTraitRemove(event:MediaElementEvent):void
                trace("Trait Remove: " + event.traitType);
            private var dispatcher:TraitEventDispatcher;

  • I download ios8 I can't use my song for ringtone and other ringtone it is not loud and I miss call

    I Download ISO 8 and I can't use the song for my ringtone , but it vibrate and I can't hear the phone rings . Other ringtone it is not loUd

    There is a difference between the passcode and the sync key.<br />
    The passcode allows to setup all sync parameters with a single code on other devices.<br />
    To enter the sync key (and user name and password) you need to click on "I don't have the device with me" at the bottom of the "Add a Device" window (Click Connect).
    * https://support.mozilla.com/kb/where-can-i-find-my-firefox-sync-key
    * https://support.mozilla.com/kb/find-code-to-add-device-to-firefox-sync

  • Can you use multiple email addresses on the owa app?

    Can you use multiple email addresses on the Microsoft OWA App?

    You can do it but there is a delay from the bluetooth speaker.  You'll need an iphone or ipad using the Apple app "Control", airplay setup, bluetooth speaker, and an Apple laptop or desktop. 
    I used my laptop to connect to my bluetooth speaker so that sound streams to my bluetooth device. Then, on my iphone I opened Control and connect the music to my airplay and my laptop at the same time.  The music goes to your airplay speaker, and then to my laptop which then blue tooths it to my speaker.  But, as I said the bluetooth takes an extra step to stream it and so the music is not in sync.  Its like a second and a half delay....

  • Can you use a 3600 for an Ethernet bridge??

    Can you use a Cisco 3600 to do a P2P bridge? Using the MAP's ethernet port  to connect to a remote LAN?  On that remote LAN can you have  lightweight APs that connect to a controller on the RAP side?

    Can you use a 3600 for an Ethernet bridge??
    http://www.cisco.com/en/US/docs/wireless/controller/7.0MR1/configuration/guide/cg_mesh.pdf
    Check - Converting Indoor Access Points to Mesh Access Points
    Ethernet bridging has to be enabled for the following two scenarios:
    1. When you want to use the mesh nodes as bridges.
    2. When you want to connect Ethernet devices such as a video camera on the MAP using its Ethernet port.
    Wireless Backhaul:
    In a Cisco wireless backhaul network, traffic can be bridged between MAPs and RAPs. This traffic can
    be from wired devices that are being bridged by the wireless mesh or CAPWAP traffic from the mesh
    access points.
    Guidelines For Using Voice on the Mesh Network
    • Voice is supported only on indoor mesh networks in release 5.2, 6.0, 7.0, and 7.0.116.0. For
    outdoors, voice is supported on a best-effort basis on a mesh infrastructure.
    other factors to note:-
    #you would be running on backhaul using A radio which is prone to DFS.
    #CAPWAP may not tolerent enough with AWPP convergence on MAP roaming.
    #CAPWAP is more latency sensitive than voice.

  • Can you use time capsule for your mac and have readynas backup your pc's on the same network

    Can you use time capsule for your mac and use readynas to back up your pc's on the same network

    Sure, that is trivial setup.. they both have different names and IP addresses.
    You should be able to use ReadyNas for TM backup but you should check the latest state of play for that.

  • I completed my album for a slide show in iPhoto; can't get the slide show to swart with picture number 1.

    I completed my album for a slide show in iPhoto; can't get the slide show to swart with picture number 1.

    Whenever I log into icloud.com
    Using what version of which browser?
    iCloud.com requires Safari 6 or later, Firefox 22 or later, or Google Chrome 28 or later. Have you tried all of those?
    If you have, have you tried clearing your browser cache and cookies?
    For the first tine since 1989 I'm thinking about buying a PC.
    You'd have exactly the same problems on an 8 year old PC too. It's a bit unreasonable to expect such an old Mac to continue to be compatible as software is constantly updated.
    Saying that, I'm still able to access iCloud.com successfully in Safari v5.0.6 on a PowerPC Mac running Mac OS X 10.5.8, so the problem you're having is likely to be a browser issue, not something inherently wrong with the computer.
    Since all this crap started, Mail won't download my Mac.com or me.com email.
    The iCloud.com website is totally unconnected to Mail's ability to download email via IMAP. Have you checked the mail server settings are correctly setup and up-to-date?

  • Re-Toast DVD - is it the same as IDVD - That is can you burn a number of .mov slide shows on the same disk?  Thank you

    Re-Toast DVD - is it the same as IDVD - That is can you burn a number of .mov slide shows on the same disk?  Thank you

    Toast can author and burn video DVDs but it's not nearly as versatile as iDVD is in creating video DVDs.  Toast can only create one menu so all items must be on it, i.e. no sub-menus, no animated menus, etc.

  • HT4325 Can you do multiple speakers for ipod touch 4 gen?

    Can you do multiple speakers from ipod touch 4 gen ?

    You are not addressing Apple here. We are all just users like yourself. Based on previous updates, I would not expect anymore update for the 4G.

  • Can you use same earphones for iPhone and iPad air

    Can you use the earphones from an iPhone on an iPad air

    Welcome to Apple Support Communities
    Of course. They are compatible with both iPhone and iPad Air

  • Can you have multiple users for your ipad

    can you have multiple users on your iPad

    We do. We each sign in our out with our own Apple ID's and we can share the same iPad that way.

  • How to apply multiple songs to a slide show?

    How do I install more than one song in a slide show of 439 photos

    You have to combine all songs into one file by using software, for example Audacity.
    PS: I owe this knowledge to a post by Victoria Bampton.

  • Is it possible to add multiple  songs to a slide show?

    Hi there.
    A slide show can be quite long as you all know and the same music continusly repeated can become boring.
    Is it possible to add several songs to the slide show to overcome this problem?
    Regards.

    One thing you can do to make it all turn out even--think about how long each slide is going to display, say you want about 3 seconds per slide, multiply by the number of slides, say you have 100 slides (I picked those numbers so the arithmetic would be easy!). That's a total of 300 seconds. Divide by 60 seconds per minute to get the number of minutes, in this case that would be 5 minutes. Then when you make your playlist in iTunes find music that fits the mood of the show and that totals a little more than 5 minutes (and is NOT Protected, as Terence mentioned). Back in iPhoto select your Playlist in the Music section and then check the box to have the slideshow fit the music, and iPhoto will adjust the display time so that everything runs the same length of time. Export to iDVD and burn your disk.
    Personally, I like to get a little fancier, so I export my slideshow without sound, then open the project in iMovie HD and make a layered soundtrack, where I arrange the music and sound effects, as in this one:
    http://homepage.mac.com/francines/.Movies/kenstr.html
    It has the music, plus a coffee gurgle, birds tweeting, page flips and a lion roar at the end. Once it's built you can send it to iDVD at full size and/or, as I did here, make a small streaming web version to share over the Internet. I wrote up a VERY short tutorial on this (notes from a workshop I ran) and put it up here:
    http://pinkmutant.com/smug/psws06/bling.html
    Afraid I haven't worked that much with iMovie 08, but I believe you can do something along the same lines.
    Francine
    Francine
    Schwieder

Maybe you are looking for