Shortening movie length.

Hi guys, I made a movie that is 7:24 long, but my movie ends after 3:29. So now I have almost 4 minutes of black blank space in my movie.
Now this is where it gets interesting. I deleted the extra black blank space in the movie, so when I compressed it, it was gone. So everything should be good now, right? Well, that isn't entirely the case.
On the mini time line thing directly under the preview screen and above the play/full screen play/back to first frame buttons still say that the movie is 7:24 minutes long, but after 3:29 (my intended movie length, which, on the time line is blue) there is a bunch of gray space all the way to 7:24. I do not understand this considering that after I compress my movie, it ends at 3:29.
This is relevant because on the mini time line above the play button and below the preview screen, the movie ends at 46% (which is 3:29) of the total 7:24 that is present on that time line. In my compressed video that I made, after 1:43 (which is 43% of the full 3:29 of the video) the video locks up. The music keeps playing, but the video just freezes on a single frame for the rest of the movie.
I have tried to re compress the video and it does not work. I've closed and re opened the program to no avail. I am thinking that because my movie ends at 46% of the total video (not my intended video) in time line under the preview screen, and the screen freezes at 43% in the compressed video, that they somehow correlate with each other, but I am not completely sure about this.
So if I can somehow delete that extra black, blank video in the time line underneath the preview screen, it will hopefully fix the video freezing in the compressed video (I hope). Any suggestions?
I have also tried to copy and paste all the footage and music to a new, blank working space but it says something about something happening to my audio. It is also important to note that after every time I compress the video, it freezes on the same frame, but the audio continues to play.

Both the video and audio file make for the total duration of a movie.
So if your movie finishes at 3:29:00 and the audio finishes at 7:24:00 the combined movie file finishes at 7:24:00, and vice versa. To cut of the movie file to 3:29:00 you need to make a hard cut in both the audio file and video file in the time line and delete the material that you don't need after that point.
Move your playhead in the timeline to the point (marker=cmdshiftb) where you want the movie to end. Highlight the video timeline and the audio timeline (shift + click video timeline, hold shift and click audio timeline). With both timelines selected hold cmdshiftt and the timelines will both be split at that point. Select all material to the right of the split in the timelines, scroll to the right to make sure there are no accidental clips pasted anywhere to the right of the split marker, do the same deletion of all files in the audio timeline. There should be nothing on the right side split mark. Now Let the movie play beginning to end to check for mistakes, it should stop playing at the split mark at 3:29:00 exactly.
You're ready to continue to the next step of saving the file with a new file name.

Similar Messages

  • I am utilizing imovie 7.1 and I am trying to shorten the length of a clip.  How do I do that?

    I am utilizing imovie 7.1 and I am trying to shorten the length of a clip.  How do I do that?

    There are several ways to do this.
    First, drag the clip from your Event to an iMovie Project.
    In the Project, there are several options:
    1) Select the part of the clip you want to keep by dragging with your mouse. When you have it, right click within the selection and select "Trim to Selection". (You can also do this from the Edit Menu.)
    2) Select the part of the clip you want to cut by dragging with your mouse. When you have it, right-click within the selection and choose "Delete Selection". You can also do this from the Edit Menu.
    There is a good Tutorial here. http://www.apple.com/findouthow/movies/imovie08.html#trimming

  • How can I shorten the length of my ringback tone?

    How can I shorten the length of my ringback tone?

    You mean music that the caller hears when they call you? You'll have to contact your carrier. That's a carrier feature, not a function of the phone.

  • Shorten the length of a repeat region

    I am trying to figure out how to shorten the length of the
    <li> in my repeat region. I want to limit each <li> to
    display no more than 40 characters in length on the web page.
    In the head of my page:
    <script type="text/javascript">
    <!--
    var dsFeedArticles = new
    Spry.Data.XMLDataSet("../feed/feeds/dailyfeed.xml",
    "rss/channel/item/article");
    -->
    </script>
    I have the following code in my repeat region:
    <ul spry:repeatchildren="dsFeedArticles>
    <li class="text">{dsFeedArticles::article}</li>
    </ul>
    I've looked at possibly a substring function but am confused
    to how to implement it. Any ideas? Any assistance would be
    appreciated.
    Regards,
    Michael

    Arnout,
    Regret the delay. My code is behind an intranet firewall, but
    pasted below is the bulk of my code. Any help would be greatly
    appreciated.
    Regards,
    Michael
    CODE BELOW:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title></title>
    <!--links for css and js-->
    <link href="css/main.css" rel="stylesheet" type="text/css"
    />
    <link href="css/blockmenu.css" rel="stylesheet"
    type="text/css" />
    <link href="..css/print.css" rel="stylesheet"
    type="text/css" media="print" />
    <script src="js/switchcontent.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="../SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var dsFeed = new
    Spry.Data.XMLDataSet("../feeds/dailyfeed.xml",
    "rss/channel/item",{sortOnLoad:"article",sortOrderOnLoad:"descending"});
    var dsFeedArticles = new
    Spry.Data.XMLDataSet("../feeds/dailyfeed.xml",
    "rss/channel/item/article");
    dsFeedArticles.addObserver(addTeaserColumn);
    function addTeaserColumn(notificationType, notifier, data)
    if(notificationType != "onPostLoad")
    return;
    //Get the unfiltered set of rows from the data set
    var rows=notifier.getData(true);
    var numRows = rows.length;
    // Now loop over every row generate a teaser column
    for (var i=0; i < numRows; i++)
    //Check the length of the entity decoded version of the desc
    column, because we don't want to factor in the length of entity
    encoded character names in our length check
    var row = rows[ i ];
    var desc = row[ "desc" ];
    var decodedDesc = Spry.Utils.decodeEntities(desc);
    if (decodedDesc.length > 20)
    row[ "teaser" ] =
    Spry.Utils.encodeEntities(decodedDesc.substring(1,20) + "...");
    else
    row[ "teaser" ] = desc;
    //-->
    </script>
    </head>
    <body>
    <!--END LEFT NAVIGATION-->
    <!--BEGIN MAIN TEXT SECTION-->
    <div id="bodysection">
    <div class="summarytitle">
    <!-- #BeginDate format:Am1 -->November 10, 2008<!--
    #EndDate -->
    </div>
    <!--date/time is automated, if date is not correct check
    your system clock-->
    <div id="oneproduct" style="border-bottom:#CCCCCC thin
    solid; padding-bottom:5px; ">
    <div spry:detailregion="dsFeed dsFeedArticles">
    <p><a href="{link}" class="producttitle">
    {title} {classification} <span
    class="datestamp">{feedDate}</span></a>
    <ul spry:repeatchildren="dsFeedArticles">{teaser}
    <li class="text" style="list-style-type:none; margin:0px
    0 -7px -40px;">{dsFeedArticles::article} </li>
    </ul>
    </div>
    </div>
    <!--END MAIN CONTENT-->
    </body>
    </html>

  • Shorten the length of the tabs?

    I'm not sure if I pushed something to change this, I need help changing it back.
    Now
    How it used to be
    I know they're different browsers but they're just there to compare.
    I want to shorten the length of the tab so that it's not taking up the whole bar. It just annoying me for some strange reason.

    I'm not sure if I pushed something to change this, I need help changing it back.
    Now
    How it used to be
    I know they're different browsers but they're just there to compare.
    I want to shorten the length of the tab so that it's not taking up the whole bar. It just annoying me for some strange reason.

  • How do I adjust [shorten] music length to fit slideshow?

    Making a memorial slideshow, hoping to use several songs but need to shorten their length. Any suggestions? iPhoto support directs me to a page that does not include the info.
    Thanks in advance.

    I use music in all of my slideshows and always adjust it to my slides either by timing the individual slides or by using the third party application Amadeus to adjust the music, cutting out parts or pauses that I don't need or want. It can also slow down or speed up music without changing the pitch but I normally just edit the music itself to fit the projected length of the shows. That way I can match certain slides to particular phrases of the music and the effect is great that way. I've used Amadeus for years  and find that I can't do without it, especially in my more intricate shows. I believe I paid about 40 dollars back when I got it but don't know the price now. Incidentally I use the Amadeus Pro version. Here's the developer's site:
    http://www.hairersoft.com/AmadeusPro/AmadeusPro.html
    Check it out.= and good luck withyour project.
    rick

  • Movie length and dual layer burning - please help!

    I just posted this question in the iMovie forums but thought it might be more appropriate here:
    Hi everyone,
    I've just finished my first iMovie project, and the total movie length is 2hours, 31 minutes. I've noticed from a few other posts that people say the maximum movie length that iMovie can export or that will fit on a dvd is 120 minutes.
    I do however have a dual layer dvd burner on my iMac - does this mean I will be able to export/share my iMovie project to iDVD and fit the whole movie on an 8gb dual layer disc? if so, could someone please give me some advice on the best way to go about doing it?
    I'm relatively new to Macs and haven't burnt a dual layer dvd yet. I'm sure that I've burnt projects of this length before on a single layer dvd using Premiere Pro and Adobe Encore DVD, but I suppose iDVD must have its own length limitations on what can fit on a single layer disc.
    Anyway I hope someone out there can answer my question,
    thanks!

    Welcome to the Discussions Art,
    If you use System Profiler (Apple logo/About This Mac/More Info...) and see that the burner is supported like here:
    http://docs.info.apple.com/article.html?artnum=301556
    Then when you are in iDVD the Status window should look like shown here:
    http://docs.info.apple.com/article.html?artnum=301557
    You can make a 4 hr DVD if you set the encoder preference to Quality (limited to 2 hr if on Performance), your set!

  • Add transitions maintain movie length

    I am using 10.0.5 and would like to add transitions and yet maintain original movie length.
    I cannot seem to find the same facility as I used in imovie9.
    Any suggestions?

    PP  I am using mac21.5 and Mavericks

  • General movie length vs. preset suggestions

    Generally speaking, can anyone give maximum movie length based on the 4 (or is it 5) presets available in Encore?
    In other words, if I transcode at preset VBR 8MB and default sound, the movie length shouldn't exceed (blank) hours.
    I realize these would be approx. with menus and other items added but I'm strickly looking for movie length maximums at a given transcode preset. Thank you!

    For MPEG-1 Layer II audio it would be the same, assuming that you are using a bit rate of 192Kb/s (which is roughly 0.2MB/s).
    The quick and dirty method (600 divided by [video plus audio bit rate]) is my own invention. :p If you want a very precise method check Neil's
    An Alternative Bit Budgeting Method
    There are several online bit budget calculators. E.g.:
    Bitrate Calculator
    Chris Linke Bit Budget Calculator
    DVD-HQ Bitrate & GOP calculator

  • Video converters (or iTunes?) shortens the length of my movie?

    I downloaded Disney Pixar's movie, "Up," & tried to convert it using "Videora" & "Any Video Converter," but everytime it converts, the video is shortened to 36 minutes.  It is orignally one hour & 36 minutes.  I don't know why it does that because when I play the movie in its original format, it's fine.  Is there any way to fix this?

    If on win or lin, try using handbrake it's best out there. I don't know what to use if you have OSX ...

  • How to extend movie length in Shake 4.1

    I'm not achieving the results I want when I try to retime a clip in Shake. I want to take a 3-second NTSC clip and extend it out to 4 seconds to fill a gap in my FCP timeline. In the Parameters1 tab of the SFileIn node that contains my original clip, I entered the desired speed in the reTiming menu and set the retimeMode to Adaptive. In the Globals tab, I set the timeRange to 1-120. When I render out from Shake, the length of my new movie file contains my original 3 seconds of video and 1 second of black.

    Make sure you set your adaptive first... THEN the speed change. Setting Adaptive second resets the time change.
    Also - make sure your render out represents all frames too. Not just the timeRange setting.
    Also -- according to one of the quys who wrote shake... the preferred method for speed change in a FCP to Shake transfer is to make the speed change IN FCP first... then use that speed as the key speed in Shake. That way you don't have to worry about how many frames you need.
    Good luck,
    CaptM

  • IPod 5G Movie Length Limit?

    Greetings,
    I had earlier ripped The Lord of the Rings: The Return of the King (extended edition) onto my iPod 5G as two separate MP4 files (since it came on two DVDs).
    However, I didn't like having one movie broken up as two files. So I converted the ripped ISOs to two MPEGs, and used MPEG Video Wizard to merge them together (I used this because I wanted the ending of the audio track of "Part1" to flow into the beginning of "Part2" - making a seamless transition).
    The resulting 4h23m06s MPEG2 w/2-chan AC3 video is 9.15GB in size.
    I used Videora iPod Converter to convert the movie into an H.264 320x144 768kbps widescreen video (cropped 60 pixels from the top and bottom of the original MPG - creating no black borders and maintaining the aspect ratio) with 128kbps 44KHz audio. Since it's only going to be viewed on the iPod, I wanted to keep the file size down and keep the good quality.
    Now, I did a few tests. I first converted the original merged MPG file into a 3-minute sample, then loaded it up in iTunes. I went through without a problem. The video synched to the iPod with no problem.
    Then I imported the full 4+ hour H.264 movie into iTunes. No problem there. But when I tried to sync it to the iPod, it got rejected ("iPod doesn't support...." yadda yadda).
    So, not giving up, I made a 1h58m sample from the original merged MPG file, and converted that to an H.264 video (using the same Videora profile as before - it never changed). That converted file imported into iTunes and synched to the iPod with no problems.
    All three videos were created with the same Videora profile, and all play in Quicktime and iTunes. Only the full-length movie will not sync to the iPod. I can only conclude that the iPod does not like videos after a certain length.
    Also, I can't think that the file size is a problem. The 3-minute sample is 20MB, the 2-hour sample is 750MB, and the full-length movie is 1.7GB (not bad for a 4+ hour movie). I did a manual check, and the full movie's video bitrate is not quite 768kpbs.
    Has anyone else seen this? Any advice? I have a beautifully edited and merged movie (that I spent some time to make perfect). And now the iPod won't love it appropriately. How rude of it to reject a movie that won 11 Oscars!
    Cheers,
    Keirmeister
    HP ZD8000 Laptop   Windows XP Pro  

    Then I imported the full 4+ hour H.264 movie into iTunes. No problem there. But when I tried to sync it to the iPod, it got rejected ("iPod doesn't support...."
    This "long clip-short clip" problem is actually quite common and depends on both the content of your movie and the particular software used to encode it. Some applications use a "loose" encoding approach while others uses a "tight" one. Basically we are talking about how quickly the encoder responds to changes in the movie content and how well it modifies encoding to adjust for these changes. The longer a movie is, the more likely that sooner or later it will contain segments (dark scenes, rapid action on a compex background, etc.) the will cause your "peak transient" data rate to climb above the maximum allowed by the iPod. Clipping a segment to see if it will load on the iPod is only helpful if you can locate actual segmet causing the problem.
    There are basically two strategies (three if you include changing encoders) you can apply to correct the situation. One is to switch from a multipass mode to a single pass and more or less keep the current data rate you are using. The single pass option in most allplications tends to "clip" these transient peaks meaning you do lose a bit of quality during those scenes. (I.e., you are trading a variable data rate for a more fixed one which has variable quality). The other strategy is to keep the multipass mode, but lower your target data rate. In this case, you are keeping a constant quality strategy but lowering the overall average data rate in the hope that this will provide enough "headroom" for your movie so it will not "peak" above the iPod's limit and will, thus, load/sync properly.
    2.0GHZ G5/533MHz G4 DeskTop/400MHz G4 PB   Mac OS X (10.4.3)  

  • How do I shorten the length of the timeline in Adobe Premiere Pro?

    This is my first time using Adobe Premiere Pro.  I created a slideshow of images with music. The entire length with all of the images ends up being around 40 minutes.  The length of the entire timeline is over 10 hours.  I had finished my slideshow and exported it in a .mov format.  The exported file ended up being a 10 hour long video with the first 40 minutes being the actual slideshow and the rest of it was blank.  That file ended up being about 140 GB in size.  All that I want to do is to cut off the rest of the time after the first 40 minutes.  PLEASE HELP!!!!

    Set In and Out Points or the Work Area Bar to the Head and Tail of your edit.
    The when you Export..use either of those as a setting to tell the exporter what  to export.  There is a Menu for it in AME.

  • Steps or path to revert to original file after Media Encoder has shortened video length by 15min

    I was trying to encode the video to decrease the upload time and instead reduced video length by 15 minutes.  I dont know how or what happened. after selecting encode.  It seemed to do what it was supposed to and then upon viewing the movie i realized much of the import video is not there...  I would appreciate any steps or measures i can try to rever to the original file.   i have the original on an sd card but, even when i right click and play its the 5 min video instead of 20

    What apps are you using to open the original file that you copies to your local drive (list all that you have tried?  QT, VLC, WMP, PPro)?
    You say original was 20 min and is now 5 min.  I don't see how AME or other Adobe apps would have done this to original file.
    I'm wondering if there was an issue with file before it came into AME and AME encoded what all the other media player are seeing which is only 5 minutes.
    In Windows, if you right click on the file and get properties, how long does windows think it is? 

  • Batch List QT Movie Lengths (including decimals)

    I've got a folder containing several hundred QT movies. A client has asked that I supply him with the length of each individual movie, in the same format that's found in the QT Movie Info window (which is hours:minutes:seconds:decimals of seconds [not frames]).
    How can I accomplish this task without opening each file and manually copying down the information that's in each Movie Info file? The ITunes playlist won't do it for me, because I need the decimals -- not just rounded up to the nearest second.
    Thanks!

    Here is a shell script for you...
    You can download the script as a text file, ready to execute (well, after unzipping) from here:
    http://rapidshare.de/files/16178764/qt_times.sh.zip.html
    The script will use qt_info to get the raw duration. qt_info is part of qt_tools which is free from:
    http://www.omino.com/~poly/software/qt_tools/
    To run it, first run Terminal (from your /Applications/Utilities folder) and then drag the script into the terminal window, click back in the window and press the spacebar, then drag the folder containing the movies to the window, click back in the window and press return.
    The command line would look like this:
    G4:/ julie$ /Users/julie/Desktop/qt_times.sh /Users/julie/Desktop/testmpeg2/movies\ folder
    Output looks like this:
    qt_times - Lists the durations of movies in the format that QuickTime Player shows.
    Released by the author as public-domain, free, gratis.
    This script requires qt_info, part of qt_tools from: http://www.omino.com/~poly/software/qt_tools/
    00:00:11.51 test movie.mpg
    00:01:09.22 another movie to test.mpg
    This is what's in the script...
    #!/bin/bash
    echo
    echo "qt_times - Lists the durations of movies in the format that QuickTime Player shows."
    echo "Released by the author as public-domain, free, gratis."
    echo
    echo "This script requires qt_info, part of qt_tools from: http://www.omino.com/~poly/software/qt_tools/"
    echo
    # Check if we have qt_info available
    qt_check=`which qt_info`
    [ -z "${qt_check}" ] && exit
    # Check to see if a folder was specified on the command line
    [ "${#}" -ne "1" ] && echo "Usage: ${0} <movie folder_of_movies>" && exit
    # Variables
    zero="0"
    hours=0
    movie="${1}"
    tab=$'\t'
    display_duration() {
    # Ask qt_thing for info on the movie and extract the movie duration as reported
    raw=`qt_info "${movie}" | grep "movie duration" | tr -s " " | cut -d" " -f 5`
    # Convert the duration to the format QuickTime Player shows
    raw_seconds="${raw%%.*}"
    raw_tenths_of_seconds="${raw##*.}"
    intermediate_minutes=$((raw_seconds/60))
    seconds=$((raw_seconds%60))
    tenths_of_seconds="${raw_tenths_of_seconds:0:2}"
    hours=$((intermediate_minutes/60))
    minutes=$((intermediate_minutes%60))
    # Now show the duration
    echo -n "${zero:$((${#hours}-1))}${hours}:${zero:$((${#minutes}-1))}${minutes}:${zero:$ ((${#seconds}-1))}${seconds}.${tenths_of_seconds}${tab}"
    # If the item passed on the command line was a file then do that one and exit
    [ -f "${1}" ] && display_duration "${1}" && exit 0
    # If it was a folder then...
    # Note, qt_thing does not discriminate between media files and not-media files, try this if its a problem.
    #find "${1}" -type f \! -name ".DS_Store" \( -iname "*.mov" -o -iname "*.mpg" -o -iname "*.avi" -o -iname "*.mpg" \)
    find "${1}" -type f \! -name ".DS_Store" | while read movie ; do
    display_duration "${movie}"
    basename "${movie}"
    done
    echo

Maybe you are looking for

  • How to add folders in mail

    I just got the iPad 2 and I'm trying to find a way to add folders to my Comcast mail. All there is is inbox, vip, sent, and trash. Where and how do you get more folders, like save and apple? Thanks.

  • Download link for Adobe Acrobat 9 Standard

    Hi, I need to know where I can download Adobe Acrobat 9 Standard for a license our company has.  Previous I.T. for the company left no credentials for any possible online account with Adobe for the possible download from there.  All I see options for

  • File System URL alias

    Hi Gurus, I have a requirement wherein the files processed by a sender and receiver file adapter need to be "downloadable" from a http url So for example the File sender directory is C:\inbound    and File Receiver directory is   C:\outbound     the

  • Cannot start managed server

    Hi, I cannot start the managed server and here MyServer.out <Aug 6, 2011 11:40:42 PM> <INFO> <NodeManager> <Server output log file is 'C:\spl\Middleware\user_projects\domains\DWP\servers\MyServer\logs\MyServer.out'> <Aug 6, 2011 11:40:43 PM PDT> <Inf

  • Broken keys on keyboard

    I have a customer that just called to ask if I can replace 3 keys on his MacBook Pro 17". Don't ask me how, but a rock fell on his computer and broke the CapsLock, Shift and Fn keys. Can you tell me if it is possible to replace those keys or do I nee