Interrupted audio extraction, now audio LOST on some clips!

I was extracting audio from several clips. As it was running I realized I did not need to extract from all the clips, only one. Since extracting audio takes SO LONG, I pressed the CANCEL button during extraction. Now some of the clips had already extracted and those are fine (with extracted audio) but the remaining clips which did not extract now have NO AUDIO at all. HELP!!!! I need to recover the lost audio without losing the hours I already spent editing and arranging clips.

Hi n
Are You sure.
If advanced user and really know this, then You need to:
• delete iMovie pref file
• Repair premissions - Apple Disk Util tool
• Repair Hard disk - Apple Disk Util tool - You need to start from CD/DVD or external hard disk to do this.
If not so sure or a beginner:
• When Extracting audio the original sound is not moved from Your Clip only silenced. If You turn on
audio adjustment "rubber-band" then You just increas the audio of Your clip to 100% ant ther it is.
Last point is my main bet.
iMovie is a non-destructive movie editor. That's why Your sound should be with Your clip and just
silenced after extracting.
Yours Bengt W

Similar Messages

  • Audio Lost on movie clips

    I had a 5 minute video that I edited down to about 3 minutes. The full 5 minute file has audio, but after I extracted the clips and play them together, there is no audio. Can anyone help me get the audio on the clips?

    The .mov or .avi is a designation for a 'container' not a specifc format, and it can be in a variety of codec. Perhaps yours is a codec that iMovie 6 cannot read properly. You may need to convert the footage to .dv and then import into iMovie.
    You can use Streamclip for this conversion: http://www.squared5.com/
    If your original .mov movies imported and played fine, they should still play ok after you trimmed the clips. You did this by splitting the clip and deleting the unwanted parts? Did you make any other edits, add any other audio tracks?
    Did you accidentally uncheck the sound of the track in the timeline view? Did you mute the sound in the video?
    Did you use the 'extract audio' command?
    Have you looked at the clips in the timeline view, selecting 'View' and 'Show Clip Volume' to be sure that the clip's volume didn't get put too low to be heard?

  • Help!! working on a movie on Imovie. I had to delete a music file from a clip section and now there are some clips that have no audio!!! don't know how to get the audio back to my clips!!!! Help!!!

    Help!! working on a movie on Imovie. I had to delete a music file from a clip section and now there are some clips that have no audio!!! don't know how to get the audio back to my clips!!!! Help!!!

    You can use some third party software to copy the music from your old iPod back to computer first, and then import the music into iTunes and re-sync them to yournew iPod. Here is a guide about how to transfer iPod music to computer. Hope it helps. Feel free to email me if you need further help.

  • No audio on some clips

    Hi
    I am a cameraman and am creating a showreel for myself on dvd. A lot of the material I have originates on dvd that clients send to me of my work edited. I then use a programme called "cinematise" to rip these dvd's into quick time files.
    When I preview my created dvd in idvd everything seems fine but when i burn to disc all the audio is lost on certain clips. I have looked at the audio properties of these clips in quicktime and it says they are Mpeg 1.
    I also have another clip that has the audio on it when played back on my computer but the audio is lost when played in my dvd player. Please could someone help as I am tearing my hair out!!! and lots of dvd's are going in the bin.

    Having had a similar problem - added sound files, layed ontop of camera video, plays fine on burned DVD, but camera audio goes out and never comes back.
    After reading for several hours on iDVD 4 & 5, there appears to be no clear answers, Apple has not posted any solutions & the only canidate that might work - need to try it myself tonight, is to record back to a MiniDV camera at 16 bit sound, start a new iMovie project & redownload the video to the computer with 16 bit audio. I'll try to get back and let you know if it works for me.
    For some reason, people are saying that 12 bit audio tends to cause problems - some of your client video clips might have been in 12 bit audio and is only showing up now with these versions software.
    Hope this helps,
    Terry

  • Extracted Audio longer than movie clip, please help...

    I was reading some of your FAQ's about extracted audio being
    recomposed with a mono instead of stereo for exported audio from a microphone or other mono device, and then importing it back into iMovie after mixing it in Quicktime, to make it stereo (albeit with only mono feed).
    My question is this:
    I extract the audio from the clip that I am running, and it is fine and good while within iMovie, however, once I drag and drop it to my desktop, and open it with quicktime and either play it or export it as mono to get it to play through both speakers, it uses the original
    length of audio not the edited version that i pull from imovie. It is very frustrating, and I am not sure why it keeps doing this.
    While it is in iMovie, the audio and video match, and are synched. But, when I export it, for some reason, it exports the original audio from the unedited clip (which has already been deleted!), and I don't know what to do to get it to export just the audio clip as it stands now within iMovie.
    Any help would be appreciated.
    Thanks,
    Chris
    G5   Mac OS X (10.4.9)  

    Hi Aesthesia - that is a fact of life of non-destructive editing. When audio is extracted from a shortened, cropped clip, it actually extracts the entire audio from the underlying original source clip. You can test this by extracting audio from a cropped clip, and you will find that you can, by direct editing, extend it back to its original length.
    That explains why the audio file when played outside of iMovie plays at the original length.

  • Audio player with some extra's - can't get player realized

    I try to build an audio player with some extra's like looping between 2 time marks.
    Till now i have an interface that can play back audio files but after that the problems start.
    There is no way i can add functions without creating a {color:#ff0000}NotRealizedError{color}.
    According to the documentation the start() method should realize (etc) the player, but it doesn't in my program and neighter does the method player.realize();.
    Can someone give me a hint to get me on the road again.
    Thanks in advance.
    Here is the complete code which generates the NotRealizedError on the dp.setRate(); method:
    (most of it is older source from a basic player on the internet).
    package dictaplayer;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.io.*;*
    *import java.net.MalformedURLException;*
    *import java.net.URI;*
    *import java.net.URL;*
    *import javax.swing.*;
    import javax.media.*;
    public class DictaPlayer extends JFrame {
    private Player dp;
    private URI uri;
    private URL url;
    private boolean realized = false;
    public DictaPlayer()
    super( "Testing DictaPlayer" );
    JButton openFile = new JButton( "Open file to play" );
    openFile.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e ) {
    openFile();
    createPlayer();
    getContentPane().add( openFile, BorderLayout.NORTH );
    setSize( 300, 300 );
    setVisible(true);
    private void openFile()
    File file = null;
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    // user clicked Cancel button on dialog
    if ( result != JFileChooser.CANCEL_OPTION )
    file = fileChooser.getSelectedFile();
    try {
    uri = file.toURI();
    } catch (SecurityException e) {
    e.printStackTrace();
    // Convert the absolute URI to a URL object
    try {
    url = uri.toURL();
    } catch (IllegalArgumentException e) {
    e.printStackTrace();
    } catch (MalformedURLException e) {
    e.printStackTrace();
    private void createPlayer()
    if ( url == null )
    return;
    removePreviousPlayer();
    try {
    // create a new player and add listener
    dp = Manager.createPlayer( url );
    // blockingRealize();
    dp.addControllerListener( new EventHandler() );
    dp.start(); // start player
    dp.setRate(2);
    catch ( Exception e ){
    JOptionPane.showMessageDialog( this,
    "Invalid file or location", "Error loading file",
    JOptionPane.ERROR_MESSAGE );
    private void removePreviousPlayer()
    if ( dp == null )
    return;
    dp.close();
    Component visual = dp.getVisualComponent();
    Component control = dp.getControlPanelComponent();
    Container c = getContentPane();
    if ( visual != null )
    c.remove( visual );
    if ( control != null )
    c.remove( control );
    private synchronized void blockingRealize() {
    int teller = 1;
    dp.realize();
    while (!realized && teller <= 20) {
    try {
    wait(1000);
    System.out.println("not realized " +teller);+
    +teller++;
    } catch (java.lang.InterruptedException e) {
    System.exit(1);
    public static void main(String args[])
    DictaPlayer app = new DictaPlayer();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    System.exit(0);
    // inner class to handler events from media player
    private class EventHandler implements ControllerListener {
    public void controllerUpdate( ControllerEvent e ) {
    if ( e instanceof RealizeCompleteEvent ) {
    Container c = getContentPane();
    // load Visual and Control components if they exist
    Component visualComponent =
    dp.getVisualComponent();
    if ( visualComponent != null )
    c.add( visualComponent, BorderLayout.CENTER );
    Component controlsComponent =
    dp.getControlPanelComponent();
    if (!realized) {
    System.out.println("not realized.");
    if ( controlsComponent != null )
    c.add( controlsComponent, BorderLayout.SOUTH );
    c.doLayout();
    }

    captfoss,
    Thank you for your comment.
    captfoss wrote:
    Start does realize the player, automatically, before it starts it... if it isn't realizing then it also isn't starting.Right, I thought so, but my test was wrong. I now tested it with getState() and I can see it's going from unrealized to realized.
    First off, you can only call setRate on a player that is realized but not started... further, any of the calls like configure, realize, start, stop, etc... are non-blocking calls...so you have to wait for them to finish before you go on to the next step.So you say that when the rate is changed (f.i. by a user in a gui) the program first has to bring player in non-started realized mode (stop + realize), call the setRate() and start the player again (on the exact position it was stopped)?
    The easiest solution would be to use Manager.createRealizedPlayer rather than Manager.createPlayer...Didn't find out yet why, but when i change this (only this), there is no playing.
    Also, ++teller++ is about the most-confused looking code I've ever seen...Just like all the asterisks, i now know that code changes when i toggle between the tabs (rich/plain/preview) in the message box.
    Beyond that, your "blocking realize" function doesn't appear to do anything except suggest you have no business coding anything this advanced. Your boolean value "realize" isn't ever changed, so, I'm not entirely sure what the point of that function is other than to wait 10 seconds.I got this somewhere from the internet. Thought it could help me realize the player, but it didn't (obvious) so i commented it out.
    Slowly I begin to understand the basics of JMF (at least i think so), but I also understand that there are other (Java) ways to build the application I need. Unfortunatly I have to little (hardly any) knowledge of all those (sound) API's (f.i. JLayer) to find my way through them and to decide which is the best for my use (user controled audio playback (at least WAV and MP3) with looping possiblities between 2 marked positions).
    If someone could give me an advise which API (method or whatever you call it) is best to focus on I shurely would appriciate that.

  • Extracted audio not locking onto clips!! -URGENT!

    I have a film... about 23 minutes in length.
    Throughout the film there are many cuts back and forth between two interviews.
    I edited the whole thing (no transitions/titles/black space inbetween yet)... and extracted the audio. I want to voiceover the audio while there are images/video shown.
    Now I find that...(now the audio is extracted), I cannot move around the clips.. without the audio becoming un-synched with the visual interviews...
    Any suggestions?
    P.S. I am quite desparate because I have a public showing of the film in just a couple days!!!
    Thanks.

    Move the audio clip to the place on the timeline where you want it to start. Go to Advanced menu and click 'Lock Audio to Timeline'.

  • Interrupted Audio

    I just got my Macbook back from a week of repairs and I couldn't be happier. Its like having a brand new laptop all over again. For three whole days.
    Today there is microphone-like-hum coming from the laptop speakers that sounds as if it is being silenced by a noise gate once every second. It is like someone very quiet in the room who is singing:
    "ffff . . . ffff . . . ffff . . . ffff . . ."
    All sound is muted and I hear this noise.
    There are no applications open and I hear this noise.
    Attempts to fiddle with the Audio Preferences changes nothing, opening Garage Band and opening its preferences changes nothing, and rebooting changes nothing.
    Playing video or audio files will replace the "ffff . . ." sound with interrupted audio, giving a fairly unpleasant strobe-like effect as if I am about to drop a phone call.
    Audio through the headphones is perfect. No interrupted sounds, no unwanted sounds, no problem. And attaching headphones turns the speakers off so this is the only way the laptop can be both powered on and silent, for now.
    But it is hard for all my friends to gather around my computer and make fun of Rebecca Black's music when we have to share a single pair of earbuds. How can I discipline these misbehaving speakers?
    Why can't I have nice things?
    Sam

    Hi Sam,
    sammishredd wrote:
    I just got my Macbook back from a week of repairs and I couldn't be happier. Its like having a brand new laptop all over again. For three whole days.
    Apple covers their repairs for 90 days. If it was repaired by Apple, I'd bring it right back to the store in case it is a hardware issue. If it's a different repair shop, check into their warranty on repairs.

  • My e-learning consists of 40 slides. I am publishing the project as HTML5, while previewing, when I use the back button on the playbar, there is an audio mismatch. Some other audio is played for that slide. Please help.

    My e-learning consists of 40 slides. I am publishing the project as HTML5, while previewing, when I use the back button on the playbar, there is an audio mismatch. Some other audio is played for that slide. Please help.

    Hi there,
    Can you please share your Captivate version?(Help>About Adobe Captivate)
    Thanks,
    Nimmy Sukumaran.

  • My synchronized clips (audio and video) have lost their compound clip icon after I bought the full version of FCP X, why is that?

    I have noticed a few changes to my FCP workflow after installing FCPX from the trial version I had before. I've noticed that when I sync audio and video files together via Clip > Synchronize Clips.. the icon at the top left corner of the thumnail is no longer there as it was in the trial version. I also have to right click and select 'open in timeline' to work on the files. I much preferred clicking on the thumnail's icon in the event library and it opening up in the timeline. Also Stabilization is missing from my video effects! How odd.

    I no longer have the trial version this is the point. Bought the 'release' version about 6 weeks ago. Still doesn't explain why the stabilization option randomly appears for some clips and not for others. Also would like to know if I can get the compound icon back on the thumbnails for synchonized clips.

  • How to extract audio from a video clip

    I am editting a video, and I need to extract the audio from a video clip. On the old iMovie it was really easy, all you had to do was press apple K I think. Thanks in advanced for your help.

    Select the clip in the sequence.
    Then command-L to unlink the clips.
    Then select the audio and delete.
    As a suggestion, two things:
    1. Explain what you want to do. If it is delete the audio, then that is different than extracting the audio;
    2. Do a search in the pdf manual in the help manual

  • Rendering audio of some clips distorted

    I have an older project from last year imported by an older version of iMovie. I imported those clips into FCE and things are looking fine. It had to render the audio and my sequence was complete..., until I spot checked some sections of it.
    Two of the longer clips (about 4 minutes each) start off fine, but about 2-3 minutes into the clip the audio is scrambled. I can still hear the original audio, but other audio from the same clip is being superimposed at repeating intervals with that changing every few seconds. Regardless, the audio track is destroyed.
    If I go back to the original source clip and play in viewer, it's perfect from end to end. The only way I could get around one of them was to break it up into sub-clips and it seemed to work OK then. Haven't gotten to the other clip yet that's messed up.
    Is there a known problem with rendering audio in FCE? Source clips were from a DV camera imported via firewire.

    Well I think I have found the solution!
    I have previously tried deleting the audio render folder (documents:final cut express documents: audio render files:your project:) with some success. Final Cut Express will ask to reconnect these files, just ignore and click 'continue'. However, this did not solve the problem for my current project.
    This time I tried deleting not only all of the audio render files, but also the waveform cache files (documents:final cut express documents: waveform cache files:). This folder contains files from ALL of your projects, so only delete the files whose names begin with the names of audio or video capture files from the current project. ie. I only deleted files called 'Assembly00001kgwv', 'Assembly00002kgwv', because when I captured from my camera, I named the capture files 'Assembly'.
    Once you have deleted all of these waveform cache and audio render files (it will not ask to reconnect with the cache files), you should be able to re-render your entire project with no problem.
    I have re-rendered an hour and twenty minutes and after briefly looking over the whole thing, there seems to be no problem. I do not know what the problem was, and I am not an expert so I won't take any guesses, but the solution seems to work for me, so I hope that helps!

  • The audio plays fine in the project screen but in fullscreen playback the audio is lost on certain clips often alternating with each clip. How to fix?

    Audio is fine in project screen play back but when full screen playback is used the audio is lost from alternating clips. This carries over to the exported file/final version. This is my 1st time using I movie.

    Hey did you find any solutions? I'm running into the same problems, would appreciate feedback and possible ways to fix this problem?
    Thanks!

  • Avchd-  on some clips, audio plays- then stops.

    I'm importing AVCHD files with 5.1 audio, and when I playback, they play just fine, but some files, the audio will just drop out in the middle of the clip, and I get no audio on that clip from that point forward.
    If I play the clip back in another program, there is audio throughout and no problems.  If I expand the 5.1 audio track, I can see the wave form, it's just fine.  I have allowed premiere to "conform audio" on all the clips before opening in the source monitor.
    The audio drops out whether they are being viewed on the source monitor or from the timeline.  Once the audio drops, it ALWAYS drops at the same point for any given clip.  Even if I delete the clip and re-import it, it will still drop in the same spot.
    Any ideas?

    I have figured out what causes this and how to avoid it.
    For me it happens consistenly if I start working with the project while video assets are still loading.
    Specifically,
    If I load a project and try to edit my sequence while the status message in the bottom left of the screen still indicate videos are being loaded, etc. I can almost garantee some clips will have sound drop outs and others will have frames out of order. Even after everything claims to have loaded.
    The lesson here? Don't trust the loading dialog. Just because it dissappeared and the workspace looks ready for you to interact with does not mean premiere has finished loading the project!
    It can also happen if I import a bunch of clips into my timeline and try adding them to a sequence or playing them in the source window before they'd been fully loaded.
    Wait patiently for everything to load and don't start working until you see a message in the lower left hand corner that says "All Media Loaded" only then is it really safe to begin working.
    That's been my experience anyway.
    Hope this helps.

  • HT201263 After updating to ios 8 through itunes, I lost my music and now I cant transfer some music from itunes (macbook pro) to my iphone 4s back

    After updating to ios 8 through itunes, I lost my music and now I cant transfer some music from itunes (macbook pro) to my iphone 4s back. Any idea how can I do that?

    After posting this, I've since found out that my iOS iTunes App on my iPhone 6 Plus works all OK when on WiFi, it just won't work when on the data/3/4G connection.
    Anybody else having this same issue since updating to iOS 8.3?

Maybe you are looking for

  • How to move songs from ipod to itunes?

    I had to reformat hard drive. My songs on are on my ipod. How do I move them into itunes? Dell Dimension 4600   Windows XP  

  • MY MBP SPITS OUT ALL CD'S AND DVD'S!!! CAN ANYONE OFFER A SUGGESTION?

    i purchased my mbp about a year and a half ago have had a few issues with the battery along the way but nothing too dramatic. my issue now is that, when i put a CD or DVD into the disk drive, i can hear it 'trying' to read it, then after a few goes,

  • Return PO scenario.

    Hello Experts, Currently we are using the Return PO facility for sending the Materials back to vendor. But all these material are stockable materials. I wanted to know whether it is possible to use return PO for the consumables which are taken in the

  • WTRE DMEE Tree Format File For France (Withholding Tax for France)

    Hello, I have to implement withholding tax for France on SAP 4.6C environment I would like to generate and to send a file to administration I ‘m using generic withholding tax program RFIDYYWT but in DMEE tree transaction i see only one format of file

  • Problems with Airport Express in Router mode

    Hi all! I have an Airport Express and a PC home network (WinXP, Win2k and one Powebook). I have Itunes turned off and updated the firmware to 6.3. My Test PC is updated with all the latest updates. All of the Computers have Wifi G cards and are switc