Audio file, Audio file

i pasted three audio file in keynote slide and applied transition to play and stop one by one  on click. but when i transfered it from my macBook to Ipad then transition disturbed on ipad and all audio file run simultaneuosely on ipad at once. but it is ok on Macbook. i checked on ipad setting. setting was same as in MACBook like one by one audio file start and stop on click but in slideshow all audio file run simultaneousely. any one can helpe me

Unless you have some very complicated 3rd party plugs on your strip and your song is a couple of hours long, the quickest things to do would be to 'try' something.
If you have a freeze file you can play (with say, QuickTime), then export/import it.
If you are in LP, unfreeze the track make a small tweak and undo it, then freeze again.
Both of these would be faster than posting and waiting for an answer.
Just try things. Good luck.
Now if what you are asking is 'how' to do this in LP, then:
Import the file
Open the Audio window
Select the file
'Audio File' menu
Select Copy/Convert file(s)
Convert and save

Similar Messages

  • OT: What viewers do you need to use ALL audio and video files?

    I had a lot of trouble with audio and video files on my PC. I
    now have a
    MacBook Pro, which is a big improvement. But I still
    frequently
    encounter files that I can't use. I try to open them, but
    Apple doesn't
    know what to do with them. For example, I often encounter
    unusable
    videos while perusing news websites. I also have some audio
    files with
    .mva or .mvw extensions that don't work.
    So what viwers/players do I need to download in order to be
    able to play
    every audio/video file that comes my way? iTunes handles .mp3
    files, and
    I also have QuickTime installed. I just viewed another video
    after I
    installed a Flash plugin. What else do I need to install?
    Thanks.
    www.geobop.org - Family Websites
    www.invisible-republic.org - Adult political websites (Mature
    adults only)

    VLC is a big favorite
    http://www.macupdate.com/app/mac/5758/vlc-media-player

  • HT1473 How to transfer audio or vedio file from my computer to  iphone 5S

    I have an iphone 5S. I tried to transfer Audio and video file from my Pc to my iphone using itunes, but it is nor added to ituned or in my pc. I saw some video  in youtube regarding the use of itune for file transfering .But it is totally confusing me.
    Please help me

    Read the User's Guide as it clearly states how to add content to an iDevice.

  • How to capture screen activity? (screen&audio to video file)

    Hello,
    I have to capture video desktop activity (including audio) to a file using JMF. I spent hours and hours searching this... a have studied a lot of classes, examples BUT I don't know how to bind them... how to record the actvity. My project is to record screen activity, upload on a server and finally control my computer remotely from an applet (or from another java desktop application). I will use HTTP streaming (what I record I upload on a server, then stream it to the client)
    Can someone show me some hints or code for modifying JVidCap example from Sun? Someone else on Sun forum said he could do it but did not say how...
    I just want to modify the video capturing so that I get the screen actifity recorded. I read nearly all examples possible including Screen Grabber...
    Please help me!
    I also have those two classes to get the screen activity as datasource... from [Screen Grabber|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/ScreenGrabber.html] example but I really don't understand how to implement them in my application because there is no method returning a datasource object... (or probably I don't know how to use them):
    (DataSource and LiveStream class)
    I hope someone can bind them or help me to go on on this project.... it is so important to me ...

    Thanks A LOT for info. I really apprectiate it. This is my code... many mistakes I think... I have a NullPointerException. I renamed DataSource class to CDataSource and instead of line: "stream = streams[0] = new LiveStream(getLocator());" I passed the media locator:"stream = streams[0] = new LiveStream(ml);"
    public class capture extends javax.swing.JFrame implements DataSinkListener{
        private DataSink dataSink;
        private Processor outputProcessor;
        CaptureDeviceInfo cdi;
        public capture() throws IOException, NoDataSourceException, NoPlayerException, CannotRealizeException, IncompatibleSourceException {
                    initComponents();
    // video DataSource
            MediaLocator sourceLocator = new MediaLocator("screen://352,264,320,240/5");
             * javax.media.NoDataSourceException: Cannot find a DataSource for: screen://352,264,320,240/5
            at javax.media.Manager.createDataSource(Manager.java:1037)
    at commented line bellow*/
           // CDataSource videoDS = (CDataSource) Manager.createDataSource(sourceLocator);
            CDataSource videoDS = new CDataSource(sourceLocator);
    // sound DataSource
             cdi = CaptureDeviceManager.getDevice("DirectSoundCapture");         
             MediaLocator soundMediaLocator = cdi.getLocator();
             DataSource soundDS = Manager.createDataSource(soundMediaLocator);
             //merge Data Sources - is it correct?
             DataSource ds = Manager.createMergingDataSource(new DataSource[]{videoDS, soundDS});
    //check them - NullPointerException here, so I think the video DataSource is not correct? or merging is not correct?
              * Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at com.ibm.media.protocol.MergingDataSource.getContentType(MergingDataSource.java:53)
            at com.ibm.media.protocol.MergingPushBufferDataSource.getContentType(MergingPushBufferDataSource.java:63)
              System.out.println("ds: \n" + ds.getContentType() + ":" +
                                    ((PushBufferDataSource) ds).getStreams()[0].getFormat() + "\n" +
                                    ((PushBufferDataSource) ds).getStreams()[1].getFormat());
    //save to video file
             saveFile(ds);
             //handler
                    addWindowListener(new WindowAdapter() {
                            @Override
                            public void windowClosed(WindowEvent e) {
                                    try {
                                            if(outputProcessor != null) {
                                                    outputProcessor.close();
                                            if(dataSink != null) {
                                                    dataSink.close();
                                                    dataSink.stop();
                                    } catch(IOException ex) {
                                            ex.printStackTrace();
                private void saveFile(DataSource ds) throws NotRealizedError {
                      ProcessorModel outputPM = new ProcessorModel(ds,
                            new Format[]{new VideoFormat(VideoFormat.JPEG),new AudioFormat(AudioFormat.LINEAR)},
                            new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME)
                      //save file here
                    MediaLocator dest = new MediaLocator("file://C:/rec.mov");
                    try {
                            outputProcessor = Manager.createRealizedProcessor(outputPM);
                            DataSource newDS = outputProcessor.getDataOutput();
                            newDS.connect();
                            newDS.start();
                            dataSink = Manager.createDataSink(newDS, dest);
                            dataSink.open();
                            dataSink.start();
                            dataSink.addDataSinkListener(this);
                            //record to that file
                            outputProcessor.start();
                    } catch(Exception e) {
                            e.printStackTrace();
    }I a starter in JMF (but not in java)... However I read so much JMF these days... I hope I will be a pro one day... :)
    Can you tell me my mistakes please? Should I use Merge class? (from example). Is video datasource correct?

  • Uploading Stream (Images/Audio/Video files/Doc files) to Windows Azure Storage Blob by using SharePoint Online 2013 Library

    Dear All,
    How I can store the Images/Audio/Video/documents files in blob storage by help of SharePoint document library and keep a reference to them in SharePoint by putting metadata in a SharePoint Library.
    I searched a lot, but not finding suitable source.
    Thanks,
    Sharad
    sharadpatil

    hi,
    Base on my experience, you could use azure storage reference sharepoint app. I suggest you could recommend this blog via (http://sachintana.blogspot.com/2012/08/azure-blob-storage-for-sharepoint.html ).
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to combine discrete audio and video files?

    I am working on a project which requires me to merge a video file with a PCM audio file from another source.
    I just bought Compressor 4.1.1, expecting to be able to do exactly this.
    The only "multiple input - single output" option I can see is creating a surround sound group, adding my audio as left and right channels, and then attaching the video.
    This does not work. Pressing "add" at the end of the process does not result in a new job.
    Help please!
    G.

    QT7 Pro is able to do this. Cost is $30.
    In QT7 Pro, open up the audio and video files to be matched.
    Select all the audio and then select copy
    In the video window, put the playback head where you want the audio to start then select add to movie.
    Verify the playback is as desired, then save the movie. Done.
    Takes longer to describe the process than to do it.
    x
    Of course, life is good when the in point is exactly the same for both audio and video ...

  • Detect audio in swf file?

    Hello,
    We are working with a software package that records the
    user's screen and audio from their microphone and then saves the
    recorded session (video + audio) to an swf file.
    Unfortunately sometimes there are audio problems during
    recording and when you play back the swf file you can see the video
    but you don't hear any sound;.
    Is there a way programatically to detect if the file contains
    audio or not? Furthermore since all files are indeed intended to
    have audio, is there a way to determine if the audio in the file is
    something other than the sound of silence (i.e. some actual noise
    or activity in the audio stream)?
    Thank you
    -lucena

    What's the name of the product? Who is the manufacture? Have you talked to them? I assume this product produces a swf but no fla.  It sounds like either the product is defective or you're not using it right. I suppose there are several products that do that the only one that I know about is Captivate.
    Captivate has a Forum here at Adobe.  You could import the swf and talk to it but I'm still trying to figure that one out so I can't help you there.

  • Embedded audio and video files with Acrobat x Pro

    Can an audio or video file be embedded in a document with Acrobat x Pro & opened with Adobe Reader xi?

    You can place video or sound files onto the pages of a PDF file using the Multimedia button on the Tools Pane > Content Panel. The result is called a Rich Media Annotation, and will play back on the desktop versions of Adobe Acrobat and Adobe Reader.
    The files have to be compatible with Flash Player, so videos need to be in H.264, FLV or F4V, and audio files in MP3.

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • I have an error message, decompressing audio or video file, how do I fix it?

    I have an error message, decompressing audio or video file, how do I fix it?

    Hi carjam222,
    Please mention some more details regarding your issue. Check the link below.
    http://forums.adobe.com/thread/961741
    Regards,
    Vinay

  • Is it possible to play audio and video files(urls) directly in webView ?

    Hello Everybody,
    I have implemented one article page in webView. The content of the that page is html file. There are some links for audio and video files. Is it possible to play that links directly in that webView by clicking them?
    Or is there any other way to play this files?
    Any kind of information on this topic is highly appreciated.
    Thanks,
    Pandit Pakhurde

    Is it important that the music come from a video, or are you just looking to listen to music in the background, while doing something else.  If the later, you can certainly play music from the Music App, Pandora, or iHeart Radio, etc., and with the music playing, tap your home button to go to your home page and open anything else you want and the music will continue.
    I don't have any videos to try out right now, but you try the same thing out and if the music continues, it works.  If it doesn't, it doesn't.

  • How can I combine the audio and video files from youtube downloads when they don't automatically combine?

    I'm using YouTube Video and Audio Downloader. Sometimes the audio and video files combine automatically, sometimes they don't - remaining as separate " DASH - .m4a and DASH - .mp4 ". It used to be that when this would happen I could open up a "ffmpeg" window which would allow me to "manually" convert them to a combined .mp4 file. It was a "drag and drop" type of interface. For some reason I can no longer access that ffmpeg combining function. I tried clicking on ffmpeg.exe. I tried re-downloading ffmpeg several times, both from the Downloader options tab and from the ffmpeg website.
    Thanks for your help.

    Sounds like a question for the developer of the video download add-ons that you have installed.

  • Which is better: Rip from CD or Audio Apple Lossless file

    Wich is better for ripping??  For example ripping AAC 320 kpbs, is it better from CD or is it the same from an Audio Apple Lossless File ??
    Thanks

    The quality you will get from ripping a CD or converting from an Apple Lossless file to 320kbps would be indistinguishable, at least without sophisticated spectrum analysis (if even then). So I would say to do whatever is most efficient for you.
    Regards.

  • How can I identify and remove duplicate file (audio & photo)

    How can I identify and remove duplicate file (audio & photo)?  I have quite a few libraries created as backup files.

    Terence,
    Yes, the duplicates appear in the iPhoto window. I have folders with same name occuring two or even three times sometimes with exactly the same set of photos (ie photos with the same ID) and sometimes with a limited set of photos. Other  folders appear only once.
    I normally take my MacBook with me if I'm shooting a lot of photos, such as on holiday, and then want to transfer them to my iMac when i get home. Other times I transfer the camera's memory stick directly to my iMac.
    I have great difficulty transferring the photos from my MacBook to my iMac. I don't want to store my photos on my iDisk due to the length of time it takes to upload them.
    Thanks again.
    Simon

  • Windows audio and video files

    I have received a .wmv video file as an email attachment. When I open it, it is the code which comes up. So far I have been unable to play it in either itunes or Quicktime. The mac Help informs me that the Imac can handle all windows generated audio and video files. What do I need to do to play the file?

    What you need is the Flip4Mac plugin for QuickTime:
    http://www.telestream.net/flip4mac-wmv/overview.htm
    Click the link for the free WMV Player, download, install it, and you should be fine.

  • Quicktime 7.5.5 SANYO Xacti MP4 movie file Audio Sync Bug..

    Hello. I am awkward in English.
    NEW Ver. Quicktime 7.5.5 SANYO Xacti MPEG-4 movie file..
    Audio Codec AAC, Sound Sync Bug
    audio and video files they are not in sync.
    KMPlayer MPEG-4 movie file Problem without Play..
    Quicktime MPEG-4 Sound Sync Bug, Wants a solution
    Thank you for any help you can provide..

    Codec : icod
    I generally defer to folks like QuickTimeKirk on these sorts of matters, but I think that's the source of the problem. That's the Apple Intermediate Codec, an editing codec used on Macs:
    http://discussions.apple.com/thread.jspa?messageID=7240374#7240374
    ... and it won't display on a PC:
    http://discussions.apple.com/thread.jspa?messageID=7304343#7304343
    Can the provider of the file re-export it using a different video codec for you?

Maybe you are looking for

  • Unable to link media to MTS files in Premiere CS6 after updating to 10.8.3

    I am now unable to link media(MTS files)  in Premiere pro CS6 after updating to 10.8.3.  Instead of the folder where the MTS files where there is now "AVCHD" with the quicktime symbol.  When I control click, it just offers me with the quick look opti

  • SQL Server Express 2008 - 1617 versus 1600

    Hello, My SQL Server Express 2008 R2 version is 10.50.1617.0. Two of my instances (SQLEXPRESS and SQLEXPRESS2) are also version 10.50.1617.0. However, when I install a new instance, the version is 10.50.1600.0 (SQLEXPRESS3). How can I install a new i

  • 'Print Image' action - unexpected repeating...

    Why hello. I've attached an automator script to a folder action that does a couple things: 1. Get Specified Finder Items {specified folder} 2. Get Folder contents 3. Rotate Images 4. Crop Images 5. Print Images {printer specified} 6. Move Finder Imag

  • Ipod 30gb Video not recognised and crashes computer while connected

    Hi Got my ipod 30gb for xmas. installed the software, then when it came to connect the ipod via usb, it recognises as far as there being a new disk but nothing else. Also i cannt open any other programs or icons on windows until i reset the ipod and

  • Change my country information

    Hello I got an photoshop subscription card at US and now i'm trying to install it at my computer in Brasil. How can I change my Country information in order to suceed? Tks