Replacing audio in QT movie doesn't change overall size of movie?

H-264 movie made for web distribution. My best video compressor only creates AIF audio files ... which are mighty big.
I made an MP3 audio file in Logic.
I replaced the original AIF audio in the Quicktime movie with the MP3 audio ... (which is 23 megs smaller) but 'info' says the QT movie is still the same size.
How can I replace audio track in QT movie (with a smaller size audio track ... and see the difference registered in the QT movie 'info'?
All ears,
Ben

Open your audio/video QuickTime file and then open the the Movie Properties window.
Highlight (single click) on the "Video" track and "Extract" (upper left of that window) to make a new video only version.
Open your audio QuickTime file, select all (Command-A) and copy (Command-C). This stores your audio track on the Clipboard.
Switch back to your "extracted" video track, select all (Command-A) and choose "Add to Selection & Scale" (Edit menu).
Test this file and then "Save As" to make a self contained QuickTime .mov file from these parts.

Similar Messages

  • Trimming audio clips: my pointer doesn't change

    When i drag my pointer to the edge of the audio that i want to shorten, it doesn't change to the trimming icon. I've tried it with the "show volume levels" option both on and off, and the pointer still doesn't change. It used to work about 2 weeks ago, but now the pointer won't change so i can't adjust the length of my audio clips. Any ideas?

    Usually those 3 things: Trash the plist, repair permissions, running DISKWARRIOR, will take care of the small glitches. Try dumping imovie and reinstall. A work around would be to cut your audio at the point you want to start and end.
    If it's a prerecorded file you could insert into a editor such as SOUND STUDIO and adjust from there.
    I have found that cutting the audio will leave some of the ends unable to adjust. I don't know if this is normal but I'm able to work around it.

  • SteSize(w,h) doesn't change displayed sizes

    After setSize(w,h) both getWidth() and setHeight() return the proper numbers but visibly on the screen, the dimensions do not change. Code, extracted from the live ap, is compilable.
    Using the code below, and clicking "Rotate" button demonstrates this. System.out.println() shows that the sizes have changed internally, but visibly, they do not change. (also nothing shows up at all until the first time "Rotate" is clicked. That, the wrongly clipped border, and the messed up rotation clipping and text placement are separate issues.)
    What's wrong here? FWIW: Nearly identical code applied to a JLabel with an image works perfectly. If it works correctly on a JLabel why does it mess up so badly on a JTextPane?
    Java is a cool language, but as an old C++ programmer I also find it deeply mysterious (and mystifying) at times.
    Thanks in advance for any clues or hints,
    --gary
    import javax.swing.*;
    import javax.swing.text.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class Rotate extends JPanel  {
        private TextPanel textPane;
        private JLayeredPane parent;
        public Rotate() {
            setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
            JToolBar toolBar = buildToolbar();
            add(toolBar);
            parent = new JLayeredPane();
            add(parent);
            parent.setBackground( Color.white);
            parent.setPreferredSize(new Dimension(640, 480));
            // Create a text pane.
            textPane = new TextPanel();
            StyledDocument doc = textPane.getStyledDocument();
            try {
                doc.insertString(doc.getLength(), "This is some sample text.\nIt can be Rotated.", null);
            catch (BadLocationException ble) {
                System.err.println("Couldn't insert initial text into text pane.");
            Border myBorder = BorderFactory.createLineBorder( Color.red );
            textPane.setBorder(myBorder);
            parent.setOpaque(true);
            parent.add(textPane);
            textPane.setDefaultBounds(120, 120, 240, 120);
        private JToolBar buildToolbar() {
            JToolBar toolBar = new JToolBar();
            toolBar.setRollover( true );
            toolBar.setFloatable( false );
            JButton rotateButton = new JButton("Rotate");
            rotateButton.setToolTipText( "Rotate text editing pane" );
            rotateButton.addActionListener( new ActionListener() {
                public void actionPerformed( ActionEvent e ) {
                    textPane.setRotation(textPane.getRotation()+1);
            toolBar.add( rotateButton );
            return toolBar;
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("Rotate");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new Rotate();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    class TextPanel extends JTextPane {
        // implements rotation for a JTextPane
        private int rotation;
        private int tx, ty;
        private int wide, high;
        // valid rotation values are:
        //          0 = no rotation
        //          1 = rotation 90 degree clockwise
        //          2 = rotation 180 degrees
        //          3 = rotation 90 degrees counterclockwise
        TextPanel() {
            rotation = 0;
            tx = 0;
            ty = 0;
        public void setDefaultBounds( int x, int y, int width, int height) {
            high = height;
            wide = width;
            super.setBounds(x,y,width,height);
        public void setRotation( int newRotation ) {
            rotation = newRotation % 4;
            if ((rotation%2)==0) {
                setSize(wide,high);
            } else {
                setSize(high,wide);
            switch (rotation) {
                case 0 : tx = 0; ty = 0; break;
                case 1 : tx = 1; ty = 0; break;
                case 2 : tx = 1; ty = -1; break;
                case 3 : tx = 0; ty = 1; break;
            repaint();
    System.out.println("Rotation="+rotation+"  Width="+getWidth()+"  Height="+getHeight());
        public int getRotation() { return rotation; }
        public void paintComponent(Graphics g) {
            Graphics2D g2 = (Graphics2D) g;
            double angle = rotation * Math.PI/2;
            AffineTransform tr = g2.getTransform();
            int h,w;
            if ((rotation%2) == 0) {
                w = wide;
                h = high;
            } else {
                h = wide;
                w = high;
            tr.setToTranslation(h*tx,w*ty);
            tr.rotate(angle);
            g2.setTransform(tr);
            super.paintComponent(g);
    }

    I spent a few mintues playing with it. I tore up some of the code but I think it works better. It will still need some tweaking:
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.BorderFactory;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextPane;
    import javax.swing.JToolBar;
    import javax.swing.text.BadLocationException;
    import javax.swing.text.StyledDocument;
    public class Rotate2 extends JPanel{
        private TextPanel textPane;
        public Rotate2() {
            JToolBar toolBar = buildToolbar();
            add(toolBar);
            textPane = new TextPanel();
            StyledDocument doc = textPane.getStyledDocument();
            try {
                doc.insertString(doc.getLength(), "This is some sample text.\nIt can be Rotated.", null);
            catch (BadLocationException ble) {
                System.err.println("Couldn't insert initial text into text pane.");
            textPane.setBorder(BorderFactory.createLineBorder( Color.red ));
            add(textPane);
            textPane.setPreferredSize(new Dimension(100, 100));
        private JToolBar buildToolbar() {
            JToolBar toolBar = new JToolBar();
            toolBar.setRollover( true );
            toolBar.setFloatable( false );
            JButton rotateButton = new JButton("Rotate");
            rotateButton.setToolTipText( "Rotate text editing pane" );
            rotateButton.addActionListener( new ActionListener() {
                public void actionPerformed( ActionEvent e ) {
                    textPane.setRotation(textPane.getRotation()+1);
                    revalidate();
            toolBar.add( rotateButton );
            return toolBar;
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        private static void createAndShowGUI() {
            JFrame frame = new JFrame("Rotate");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Create and set up the content pane.
            JComponent newContentPane = new Rotate2();
            newContentPane.setOpaque(true); //content panes must be opaque
            frame.setContentPane(newContentPane);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
        class TextPanel extends JTextPane {
            // implements rotation for a JTextPane
            private int rotation;
            private int tx, ty;
            // valid rotation values are:
            //          0 = no rotation
            //          1 = rotation 90 degree clockwise
            //          2 = rotation 180 degrees
            //          3 = rotation 90 degrees counterclockwise
            TextPanel() {
                rotation = 0;
                tx = 0;
                ty = 0;
            public void setRotation( int newRotation ) {
                rotation = newRotation % 4;
                switch (rotation) {
                    case 0 : tx = 0; ty = 0; break;
                    case 1 : tx = -1; ty = 0; break;
                    case 2 : tx = -1; ty = -1; break;
                    case 3 : tx = 0; ty = -1; break;
                repaint();
            public int getRotation() { return rotation; }
            public void paintComponent(Graphics g) {
                Graphics2D g2 = (Graphics2D) g;
                double angle = rotation * Math.PI/2;
                g2.rotate(angle);
                g2.translate(ty * getWidth(),  tx* getHeight());
                super.paintComponent(g);          
    }

  • When I use a tool on an enlarged image the image freezes and I can't get it to move unless I change tools. I tried resetting tools and uninstalling and reloading CC. What should I do?

    When I use a tool on an enlarged image the image freezes and I can't get it to move unless I change tools. I tried resetting tools and uninstalling and reloading CC. What should I do?  Once any tool is used I can't change its size or move the image.

    Howdy,
    Sorry for the lack of info. It is Adobe Photoshop CC, I have been using
    CS5 and am trying the trial version of CC to see if it worth changing
    to. Any tool works once but freezes the tool sizing and image movement.
    I am also using the Beta version of Mac Yosemite. But the CS5 version is
    working fine.
    Hasta,
    Bob McCaw

  • Movie purchased in iTunes won't play. Audio is fine; video doesn't appear.

    Movie purchased in iTunes won't play. Audio is fine; video doesn't appear.

    Wormbog wrote:
    I went back to iTunes but there's no option for me to re-download it.
    Yes there is.
    Go to the iTunes Store on your computer.  Click the "Purchased" link about halfway down on the far right side.  Click the "All" tab on top.  The song is there.  Re-download it.

  • Replacing audio in mp4 movie clip

    For two days now I'm trying to find a way to easily replace audio track in my mp4 movie clip without re-encoding the whole thing. I found an answer how to do it in QuickTime Pro and some other software, but no luck with Adobe Premiere Pro or Audition or other Adobe CS6 Production Premium software which I own. Can somebody please tell me how to do it? Is it even possible
    Thanks in advance.

    Hi Kevin,
    There is a way!  I just figured it out!
    I have my extracted audio in the clip bin where it should be after I "edit audio in Adobe Audition."  I then unlinked just my audio clips with the track selection tool as they were on the same track.  Then I relinked the audio to the extracted enhanced audio file and BAM!  It worked!
    Figuring this out just saved me hours possibly days of manually replacing these audio clips!

  • Lock a marker so it doesn't move w/ tempo change?

    Hi, and sorry if this is a remedial question but I'm wondering how to make a marker in the marker bar that won't move when I change tempo. I'm basically scoring a piece to picture, and I want to make markers for when certain things happen in the video, then play with tempo so that I can move my midi around to try and fit events to the picture events. If my markers move every time I change tempos it's useless! Thanks in advance for any help.
    Matt

    I think you can go to the marker list and lock the smpte position.
    I think.... Haven't done it in quite a while.
    Hang on, I'll boot Logic semiPro again, coz it just crashed on me again...
    (while we're waiting, hey wouldn't it be cool if Apple offered tech support for their 'professional' software? dum dee dum dee dum.. yeah it would. Oh, we're ready. Back to business)
    Okay, create some markers.
    Open up a "marker list" (in your 'list view').
    Make sure the marker positions are displayed in SMPTE numbers
    Then select the marker in the list you want to lock, and choose "Lock SMPTE" in the edit menu. Or use your "Lock SMPTE" key command. Mine is Control L, with Shift-Control L for unlock)
    Yer done!

  • Replace audio with voiceover

    Hi guys,
    I'm trying to use the timestretch tool in Soundtrack Pro to replace bad audio from a speaker with a VO. The recorded timing is close, but still requires some tweaking to look & sound natural.
    My problem is that when I highlight a segment and stretch it, it doesn't move the rest of the audio forward or backward to meet the new size of the stretched segment (and therefore re-synchronizing the audio). What's the best workflow for this task? Am I going about this all wrong? Any advice would be greatly appreciated!
    Thanks,
    Lawrence

    Ok Guys,
    Here is what I've come up with (I'm sure there is someone who knows of a better workflow, but I'm going to share what I've done anyway). . .
    I created a sequence with my video and BOTH audio tracks (one from the original video, and the new audio from the VO lined up as best I could).
    From there, I exported to a STP multiclip project. Once in, I resized the timeline so I could see all of the clip, resized the tracks using cmd-9 to make them big enough to view properly, then I selected the clip and used the Timestretch tool (T) from the tack editor to stretch the entire VO longer than I needed.
    This way, I could progress through the first phrase, use the blade tool to cut the track, then use the Timestretch tool to make it short enough to match the video and other audio. After that, I could just select the VO in the timeline and drag it back over to the end of my new, shorter phrase.
    That might have just been the most confusing and worst excuse for a tutorial I've every written, but maybe it will help point someone in the right direction if they ever need to do what I've done.
    Lawrence

  • Removing items from sheet doesn't change SQL

    Discoverer desktop 10.1.2.1
    When I create a sheet, run it, then remove items from the sheet, and then refresh it, the SQL doesn't change (items/columns that were removed remain in the select statement). They (columns) are removed from the resulting report, but it's throwing off my results (number of rows due to summary items). In other words, I had detail numbers, replace them with summary numbers, now it should be grouping by the detail items, but it's isn't. Basically, the tool isn't removing those items from the SQL.
    Has anyone seen this?
    Thanks in advance.

    I'll chime in on this one - we're seeing this same behavior as well. I can reproduce the problem at will like so:
    1) Create a new sheet.
    2) Pick a table, any table, that has a data point.
    3) To this new sheet, add the DETAIL of the data point, and one other attribute.
    4) View the results - they are good.
    5) Realize you made a misteak, go to Edit Sheet, remove the DETAIL and replace it with the SUM of that same data point.
    6) View the results, and become dismayed that they are not grouping at all.
    7) Click on View->SQL Inspector, and observe the detail item is still in the SQL (along with the SUM) despite having removed it in the sheet editor.
    8) Edit sheet - remove all items leaving absolutely everything blank (no selected items, no columns, no calculations, no sorts, nothing)
    9) Click on View->SQL Inspector, and observe the detail item is still in the SQL. That's wrong!
    If that's not a bug, I'm czar of all the Russias.
    // Discoverer Desktop 10.1.2.1
    // Discoverer Desktop Client 10.1.2.48.18
    // EUL Library 10.1.2.48.18
    // EUL 5.1.1.0.0.0

  • File name doesn't change in Quicktime or iTunes even though i changed it in Finder

    I've have been trying to change the name of a video file (.MP4). I change the file name in the finder and it stays that way. However when i open the file in quicktime the name has not changed in the title bar. Also if i move the file to iTunes, I have it setup to copy and organize my files that i add, it changes it back to the old file name. I have all copies of the file closed. Both Quicktime and iTunes are closed. Please help me fix this. Thank you.

    You need to use a program such as VLC or Flip4Mac to play them or Switch to convert them. Just changing a file's extension doesn't change its format.
    (109393)

  • Volume of song changes when I export movie.

    I imported a couple songs to play in the background of my movie. The original 100% volumes were too loud for both of the songs so I turned the volumes down to about 60% using the volume sliders below the audio tracks. But when I exported my movie (I tried both Quicktime web and full quality dvd) the volume of the songs in the background seemed to be playing at full 100% volume again. Is there an "apply volume change" button that I'm not seeing or something?

    Hi into...
    I don't have access to iM4 anymore... but as far as I remember: you have a slider for "iMovie" AND you have another one for adjusting the level of a CLIP. so, you need to select an audio clip, THEN apply any volume changes...
    sliding the slider under the main view window lowers the playback in iM, but not of the clip....
    ... or do I misunderstand something completely???

  • ATV doesn't work with mp4 and mov files

    Apple TV doesn't play the mp4 or mov files that are in my iTunes Library.
    ATV plays only m4v video.
    How can I do?
    Thanks,
    Lud

    Thanks Rudegar and Churchill for your answer and sorry if I answer so late.
    I didn't create such files... I only downloded them from internet...
    I have tried to convert them with "Any video converter" bought on App Store. If I tried to convert the files in a ATV format the software creates a m4v file, but offen the audio is out of sync...

  • Menu background movie doesn't show

    Hello to all.
    I've been working on a DVD from an iMovie file, and want to have a one-minute movie loop to play as a background for the main menu. I've tried all the methods mentioned in the iDVD Help topic, but all I get from it is the sound portion. When I open the "Menu" panel, I see the icon for my movie in the background image well, and also in the audio well. Everything looks like it should, according to the help file, but when I preview it there is no video at all. I've switched to various themes (6.0, 5.0, and 4.0), all without any improvement.
    The movie clip was edited in iMovie, with an audio track added to it. I've tried to insert it as a DV file, an iMovie file, and a Quicktime file. All of these produce the same results.
    I'm still using OS 10.3.9, but I have the belief that iDVD 6.0 works with my OS, as long as I stay away from HD themes.
    Any suggestions?
    G5 1.8GHz Dual   Mac OS X (10.3.9)  

    Thanks so much for the reply.
    What I meant by saying that both of the wells had the icon for my movie clip was that by putting the clip in the video well, it appeared in the audio well by itself - I didn't have to put it there.
    I followed your suggestion about putting the two tracks in separately, but got odd results. First of all, I used iMovie to extract the audio, and then used it to delete the audio from the movie file, so that I had an .aiff file for audio, and a movie file for the video. Had no problem putting the audio file in its well, but the new video-only movie file refused to go into the video well. Could it be that something about how I'm saving the iMovie clip is preventing the video from being recognized?
    I should add that when I put that original file in the spot where it will automatically play when the disc is inserted, the clip plays just like it should. But if I put that same clip in the menu panel, it doesn't.
    I've also got an odd thing about that first panel "Drag content here to automatically play when the disc is inserted". There's a red-X, which says that the "Total menu duration exceeds 15 minutes". However, that panel is blank, and I can't find any reference to what content is referred to.
    Pete
    G5 1.8GHz Dual   Mac OS X (10.3.9)  

  • Inserted movie's auido doesn't stop even if we move forward

    Hi,
    In captivate 2.0, I'm inserting another flash movie with
    audio as an "animation slide". on the slide (not in the inserted
    movie), the display time is "rest of slide". i have a button to go
    to next slide. next slide has its own audio. problem is that, while
    playing, before the inserted movie finishes, if i click the button,
    the movie proceeds to next slide, but the audio of inserted movie
    doesn't stop. i.e. now i'm hearing audio from the incompleted
    inserted movie plus audio of the second slide. How can i completely
    stop the inserted movie from playing audio after i click the
    button. I think the same problem is there if i use the Captivate's
    playback control buttons also.
    plz give a quick help..
    thanks
    Jack

    Hi,
    thanks for the reply. i think the option of keeping audio in
    parent file is not possible in my case because the child file shows
    configuring a particular s/w thru several slides and sync with
    audio is important. and i think in Captivate, there's no option for
    exporting audio from a project as a single mp3 file so that i can
    import it in the parent slide.
    the end option of child project is "to stop project". yes, i
    can set the length of the parent slide to a numerical value. but
    the problems is that, if user click the continue button included in
    the parent slide before the child movie finishes, it goes to the
    next slide, but audio of child movie continues.
    Regards
    Jack

  • My macbook pro won't start up. I get the white screen and the grey apple icon   the spinning wheel......and it doesn't change !

    My macbook pro won't start up. I get the white screen and the grey apple icon   the spinning wheel......and it doesn't change !

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    To restart an unresponsive computer, press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If a desktop Mac hangs at a plain gray screen with a movable cursor, the keyboard may not be recognized. Press and hold the button on the side of an Apple wireless keyboard to make it discoverable. If need be, replace or recharge the batteries. If you're using a USB keyboard connected to a hub, connect it to a built-in port.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.  
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

Maybe you are looking for

  • Report on Vendor Ontime Delivery

    Hi Is there any Standard SAP report available on Vendor Ontime delivery, which is report showing deviation of PO delivery Date and GR date we need this report to monitor vendors Thanks

  • Problem in main vda host: vdadb:sql in maintenance

    Hi, I dont find a way to solve this, the installation went without problems or error messages, but still have this problem, is any of this normal? root [ ~ ]# cacaoadm status default instance is DISABLED at system startup. default instance is not run

  • International Calls cannot make

    I have the new windows skype client. and cannot make anymore international calls. any suggestions.

  • Format for importing

    When importing I am importing as AAC format - if I imporsted as MP3 woulf they take up less space, thus allowing me to have more songs on my nano?

  • I cannot access a remote app for quickbooks with firefox but can with IE?

    Hi, I have recently installaed quickbooks online and the new version 2 of this remote app. Version 1 was working on firefox and when I called tech support at quickbooks they advised me to use Internet Explorer. I can access the remote app on IE, but