Clip speed slows after rendering PP 7.0

When I render, my clips slow in speed, but the clip duration remains the same.  My sequence settings match my clip properties.
MP4
Image Size: 1920 x 1440
Frame Rate: 47.95

Gopro is getting very much part of the video production world.
http://www.youtube.com/watch?v=QTx5sopwxwQ
http://www.youtube.com/watch?v=QsS5E5KiBz4

Similar Messages

  • Clips look like speed increased after rendering?

    Weird! I have a few different 30 minute training videos, and after applying the 3-way color corrector I rendered. But, now when I watch they look like the speed of the footage has been increased somehow??
    The footage I have was shot in 1080p 30fps. I dumbly began editing in h.264 so that's what it is, and there are some alpha channel simple animations done in Motion as overlays to the footage. I believe the Motion settings are Broadcast HD 1080i60.
    Any ideas?
    Thanks!

    editing in h264 in fcp is problematic at best.  Although it may work, eventually you'll regret it.    I'd seriously advise converting all your footage to prores using compressor.  You can reconnect to all your existing work by doing a MM to the correct format with media offline.  If you make sure that your converted files have the same file names, reconnecting should be as simple as pointing to the correct folder.  I'd do a test on one file to make sure the workflow is correct.

  • Wireless internet speeds slower after upgrading from 10/2 to 50/25?? Using olders revision Mi424WR.

    We have been using the oldest version/revision of the Actiontec Mi424WR router provided by verizon for 3+ years.  Recently we upgraded from an outdated 10/2 internet plan to our current 50/25 wireless plan.  The speeds when wired are fantastic, but with wireless, on multiple computers the speed even right next to the router hovers at about 10mbps.  I understand about the degradation and limit of wireless signals, but we should absolutely be getting higher download speeds than 10mbps(~1Mb/s).  On our older 10/2 mbps plan our devices were receiving consistant download speeds of higher than we are getting now, maxing out at 1.6Mb/s usually.  The only change that has been made recently is we reset the router to fatory settings, leading me to believe that wireless settings that were in place before are no longer there and throttling wireless speeds.  I do not expect to get the full 50+ mbps speed that I am getting from wired, but I do expect my wireless speeds to be consistent with our upgraded plan(let alone slower than our massively slower old plan).  Any thoughts or help would be greatly appreciated, thanks!

    You should definetely get better speeds even with an older router, upto about 20 or so. 
    If that works for you, then it's probably just a little wireless interference.   
     you can change that in the router.   open a browser, and go to http://192.168.1.1
    user name is admin.  and the password is most likely the serial number found on the service tag of your VZ router unless you changed it. Once you login succesfully, go to the top and hit wireless, then on the left basic security.   then go to option 3 which is channel  1, 6 and 11 and are the only channels you should try.
    So it will likely be set to auto, change it to 11 and put the check for keep settings even after reboot (Directly under the channel) and then hit apply.  after you hit apply,  test your connection out, if you notice a difference, leave it like that until the problem happens again, and if it happens again, go back into the router, and try channel 6,     test it out.  and then finally 1 if the first two don't work.
    Also take a look at page 2 of Actiontec's Wireless PDF File.  It gives you some idea's with regards to position and orientation of where the router sits and how it can best be positioned for maximum coverage.
      http://support.actiontec.com/doc_files/MI424WR_Rev​(all)_Wireless_Networking_Guide.pdf

  • Attach movie clip speed increase after 2 min

    i am making a game in falsh as2
    see this link to understand http://createview.in/try/game.html
    this function for one fruit.
    so there are 10 functions i want to increase speed of falling fruits after 2 min for making difficulties to user
    makegd is function for bonus golden fruit it will come every 3 min
    PLEASE HELP ME!!!!!!!!!!!!!!!!!!!!
    function makeOne() {
              if (seconds>0) {
                        clearInterval(ranOneID);
                        ran = (Math.random()*10000+8500);
                        ranOneID = setInterval(makeOne, ran);
                        One = _root.attachMovie('n_red', 'n_red'+depth, depth++);
                        nBalls.push(One);
                        //trace(allBalls);
                        One._x = Math.random()*500;
                        One._y = -350;
                        One.speed = (Math.random()*3)+2;
              One.onEnterFrame = function() {
                        this._y += this.speed;
                        if (this._y>Stage.height+100) {
                                  //updateScore(-5);
                                  black=black+1;
                                  for (i=0; i<allBalls.length; i++) {
                                            if (this == allBalls[i]) {
                                                      allBalls.splice(i, 60);
                                  this.removeMovieClip();
                        if(this.hitTest(slider_mc.kat)){
                        red = red+1;
    function makegd() {
              if (seconds>0) {
                        clearInterval(rangdID);
                        rangdID = setInterval(makegd, ran);
                        gd = _root.attachMovie('golden', 'golden'+depth, depth++);
                        goldenBalls.push(gd);
                        //trace(allBalls);
                        gd._x = Math.random()*500;
                        gd._y = -100;
                        gd.speed = (Math.random()*8)+3;
              gd.onEnterFrame = function() {
                        this._y += this.speed;
                        if (this._y>Stage.height+100) {
                                  //updateScore(-5);
                                  for (i=0; i<allBalls.length; i++) {
                                            if (this == allBalls[i]) {
                                                      allBalls.splice(i, 1);
                                  this.removeMovieClip();
    makeOne();
    makeTwo();
    makeThree();
    makeFour();
    makeFive();
    makeSix();
    makeSeven();
    makeEight();
    makeNine();
    makeTen();
    setTimeout(makegd,180000);

    Thank you Kglad for your quick response.
    one thing that not happen
    makegd is function for bonus golden fruit it will come every 3 min
    it comes after 3 min but it's not single fruit that function work like other fruits.
    function makegd() {
              if (seconds>0) {
                        clearInterval(rangdID);
                        rangdID = setInterval(makegd, ran);
                        gd = _root.attachMovie('golden', 'golden'+depth, depth++);
                        goldenBalls.push(gd);
                        //trace(allBalls);
                        gd._x = Math.random()*500;
                        gd._y = -100;
                        gd.speed = (Math.random()*8)+3;
              gd.onEnterFrame = function() {
                        this._y += this.speed;
                        if (this._y>Stage.height+100) {
                                  //updateScore(-5);
                                  for (i=0; i<allBalls.length; i++) {
                                            if (this == allBalls[i]) {
                                                      allBalls.splice(i, 1);
                                  this.removeMovieClip();
    setTimeout(makegd,180000);

  • MTS/MPEG Clip- Quality reduced after rendering?

    Source video:  MTS/MPEG 1440 x 1080, 29.27 frame rate, 1.1 avg. data rate, pixel aspect ratio- 1.3333
    Imported file from computer to HDV project.
    Viewing the clips in the timeline, the quality is great (on computer and TV monitor). However, once I apply any effect requiring a render, the quality degrades.
    What am I missing here?
    Thanks!
    John

    LMVideo
    The project preset for the project should match the properties of the source media in order to direct the program to set up the correct space in the Edit area monitor.
    The project preset has obvious and subtle effects on the workflow.
    If your source is described specifically as 1440 x 1080 (60i)...remembering that 60i represents 60 fields per second and 29.97/30 interlaced frames per second,
    then you use...
    NTSC
    HDV
    HDV 1080i30
    You do not want an alternative.
    If you want to the export to come as closely as possible to the properties of the import, then you look in Publish+Share/Computer/ for
    a. comparable format with comparable bitrate and other properties. For example...
    Publish+Share
    Computer
    MPEG
    with preset = MPEG2 1920 x 1080i30
    The reason that we are using the 1920 x 1080 16:9 instead of the 1440 x 1080 is to avoid the dependency of the player recognition of a 16:9 flag which
    is required for the 1440 x 1080 to display at 1920 x 1080 16:9.
    We want the bitrate of the export to be a high as the bitrate of the import, so we go under the Advanced Button/Video Tab of the preset to assure that.
    Left at preset default
    Bitrate
    Minimum 18 Mbps
    Target 25 Mbps
    Maximum Mbps
    What is the bitrate for your original that you imported into the project?
    Right now, just focus on the above. We can explore
    24p Conversion Methods and the like
    ATR Premiere Elements Troubleshooting: PE: 24p Conversion Methods, Pulldowns, and Related Interpret Footage
    when and if needed.
    Your problem originally stated goes to what happens to good Timeline content that goes bad after application of a video effect.
    At this point, it become premature to be discussing export settings.
    If we assure that the project settings are set correctly, then we need to focus on the video and effects and define which effects and how many to each clip,
    unless you have tried each and every one. A good way to get at this type of matter would be to focus on the video and a specific effect...showing screenshots for video before and after a specific effect has been applied. Are you editing these applied effects under Applied Effects Tab/Applied Effects Palette/Expanded Panel for the effect applied?
    Please review and consider.
    Thanks.
    ATR

  • DVD-R and CD-R Burn Speeds Slow after Tiger

    Hi, I just installed Tiger a few weeks ago and noticed that when I am in the finder and record or burn a CD-R, it does so at 8X max, and a DVD-R data disc burns at 1X only, instead of the 2X its supposed to do it. Any help is welcomed.
    Also having problems when inserting a DVD-R, it no longer askes what to open (IDVD, finder, DiskUtility) even if I never checked the always do this, it automatically opens IDVD everytime and doesnt let me open it in the finder. The solution for this is that I have to place the IDVD application on a External Harddrive and then insert the disk and I get the dialog box again, but once I pass the application back to the applications folder it always defaults into opening that.

    Your burning speed isn't determined by your operating system, it's determined by your SuperDrive. So if you have an 8X max for CD-R and 1X for a DVD-R that's what you're stuck with.
    You can however reflash your firmware to trick your drive into ripping and burning a little faster. Shoot me an e-mail at [email protected] and I'll e-mail you the info on how to do it. It's been a while, so I have to look up the file again. Also, be sure that's the SuperDrive you have because the new firmware is drive specific!
    -Joe

  • Load up speed slower after removing XP partition.

    I have just realised that since deleting my XP partition, the Apple logo tends to take half a minute to appear, and it also stays there for longer than before... Once it has flicked to the main boot page (ie, the blue bar that goes 'wizz' across the OS X box) It loads very fast.
    The only thing I am wondering is why a process that used to run very efficiently has changed its 'normal' activity. I guess it may have something to do with the machine searching for more than one partition, if that is the case, how do I make it KNOW that there is only one now!
    It happened with my old core duo Macbook pro too.
    Any suggestions or fixes welcome... Cheers

    I've only had a problem with the startup so far, although I rarely take notice of the hard drive, I dont use msn, and I also don't own a DS, but they look like great fun!
    I tried repairing disk permissions but I haven't used the system since, so If it helps I will tell you.
    Windows was functioning like it should, but I installed it to play HL 2 Death Match and my ping/latency is so high I get booted out of the servers which is a bit frustrating, considering I bought Xp pro especially for this purpose!
    NEVERMIND>> all in a day! lol

  • After rendering clip is in slow motion

    Hi,
    I've been using Gopro shots, which were converted to AVI with Cineform, following the CS 6 issue:
    Sequence setting, and clip rate: 1280x720, 100fps, avi. after the rendering the clip takes place in slow motion on the timeline.
    Why is that?
    If I use the same clip in the setting 1920x1080 60fps render remains the original speed, so it will not slow down.
    Thanks, Alex.

    The pc can handle the yellow line, but not some of the cross fades.
    The clip plays in normal speed after exporting the 1280x720, 100fps.
    It only slows down on the timeline.
    Any solution or idea what the problem is?
    i put it in 60fps sequence because it doesnt slow down after rendering.

  • After rendering a clip it plays back slow

    For christmas i recived a gopro hero 3, since then i have been out to the beach filming with it.
    The setting i filmed in is 48fps at 1080p
    I first brought it straight into premiere cc and started to edit it, i noticed that some clips after rendering seemed to have slown down, but kept the same duration.
    At first i thought it was because i was stablizing the clips, but only certian clips became slow, while others were fine.
    I then downloaded the gopro program and converted the clips to avi files as apparently the gopro files straight from the camera arn't the best for playback and editing.
    Even after converting the same clips slow down and i dont know why, i have looked around for a good few hours now and noone seems to know why its happening?
    Is it because of the framerate i recorded in? i have had problems before with the sequence settign being right but for this i made the sequence from the clips so they are the same.
    Im a regualr editor of dslr footage and all that is fine, its just when i start to edit gopro footage that it happens
    Please could someone help

    historically film cameras are 24 FPS ...and broadcast ( in the US ) is 30 FPS...so a lot of what happens in editing is sometimes related to that stuff...
    If you shot at 48 FPS and showed it on a film projector ( which is 24 fps ) as " film " it would look twice as SLOW as normal footage shot at 24 FPS.
    If you shot at 48 FPS and want it to look NORMAL than you would play it on a projector that actually projects at 48 FPS...and then it would normal.
    See what I mean about the stuff being related ??
    So if you shot 48 FPS and want it to look normal you can try " intrepret footage " settings...and there are others here who can help you more... I don't shoot overcranked and haven't done what you are trying to do .. but you should stipulate whether you want the motion you shot to look " normal " or slowed twice as much or what ... keeping in mind what I said above ...
    hope that helps ?

  • Always 100% Opacity after changing the clip speed.

    I have a big compositing problem with Premiere CC.
    After I change the speed of a clip to slow motion, I can't change the opacity anymore...
    I set keyframes from 100 to 0 %. It only works with my ProRes HQ Files in normal speed.
    Does anybody know this bug or have an idea???

    It actually works fine here, even without nesting, using both Speed/Duration and Time Remapping.
    Though I can't test with ProRes.

  • I am trying to convert a video clip so that i can slow down the clip speed, but i keep getting an error -34.  any ideas?

    I am trying to convert a video clip, already in imovie so that I can slow down the clip speed, but I keep getting an error -34.  Any ideas?
    Thanks!

    Hi Russ,
    Thanks for your response. I am not an experienced user of FC or other video editing software but if its that hit and miss I think I will go to the trouble of finding some better software - I have a busy enough life as is, I don;t want to get into second guessing what a software problem might be!
    I have just successfully exported my video to a master file using one of the Apple codec options so it looks like it could be to do with the H.264 codec.  I am wondering if Apples Compressor software would solve this problem - the only way to try this it to buy it, there is not trial for the compressor app.  Any ideas?
    Thanks
    Gerry

  • Jerky and abrupt frame movement after rendering (Clip)

    Hello,
    Would anybody happen to know what's the reason of jerky and abrupt frame movement after rendering?
    Please go to the link http://www.youtube.com/watch?v=ANTpUzk3jYY and watch the clip.
    - I have a 4Core CPU (Intel i7)
    - Graphic Card: Quadro FX 4800 (with the latest 64-bit drivers installed)
    - The most recent version of Elemental Accelerator (with the latest drivers installed)
    - Adobe After Effects CS4, Adobe Premiere PRO CS4.2
    - Adobe Photoshop CS4 Extended
    - Windows 7 64-bit
    - RAM memory: 12GB
    Do you know why does this happen?
    Thank you!!
    Giannis

    I use a Full HD 1080i SONY Semi professional cam (2,930.00 $). I use AVCHD file format which is accepted by premiere and after effects. I could convert it but I would not like to spend time since this kind of format is accepted by the software.
    I don't have these problems all the time. Eventually I managed to export the clip properly. I think it has to do with temporal memory. I don't know. I have to check all the memory data for best peformance and best rendering. I think I have already done this but I will dig a little deeper in this..

  • Slowing the Particle Speed in After Effects Particle World?

    Hi folks, does anyone know if there is a way to slow down the line particle speed in after effects?
    I've already tried the Velocity and Gravity but these affect the shape and projectory of the particles, I'd like to just slow down the speed?
    Thanks

    There are other particle systems that offer more control if you really need it. Expensive.
    Build your main comp at a higher frame rate, render the movie, and bring it back into a 30fps comp. You can precompose and nest but the movie is generally easier to manage in your head. The highest frame rate I can use on my AE is 99fps. A more current version may offer higher frame rates.

  • Slow speeds even after BT Engineer visit, Whats ne...

    We've always had really slow internet speeds, around 1.5mbs down 0.4mbs up. (From the BT speed tester)
    After many conversations with the helpdesk, an Engineer was sent out today to try and solve our speed issue.
    Various tests were carried out on the line, all reported back as a good quality line. S/N ratio was 96% etc.
    We are located pretty close to the exchange and the engineer has said we should be getting alot more than what we are. He has tried a reset on the line but this hasnt improved anything.
    Whats the next step? Do we contact the helpdesk again? Are there more advanced level of engineers, i.e. for exchange issues?
    All of the standard checks have been done :-
    - using main socket only. (BT Openreach ADSL)
    - line test 17070 option 2, results in a very faint crackle but could be the handset
    - BT Home Hub 2, package is BT Broadband Option 3 (unlimited)
    - The exchange is Billingshurst and has ADSL Max enabled
    - The engineer has now installed a dedicated socket. (phone and internet on the socket). Previously we had tried two sepereate filters.
    - wired conection
    - Hub is left on 24/7
    Our next door neighbour is on an identical package/setup to us and gets 3.7mb down on the speed test.
    The engineer has just reset the line hence the time log being low. Currently measuring at 1.2mb down, so slightly lower than before.
    The Noise margin was at 6.5db, the engineer reset this down to 6db and it has slowly krept to the figure below:-
    ADSL Line Status
    Connection Information
    Line state:
    Connected
    Connection time:
    0 days, 06:24:11
    Downstream:
    1.938 Mbps
    Upstream:
    416 Kbps
    ADSL Settings
    VPI/VCI:
    0/38
    Type:
    PPPoA
    Modulation:
    G.992.1 Annex A
    Latency type:
    Interleaved
    Noise margin (Down/Up):
    6.2 dB / 7.0 dB
    Line attenuation (Down/Up):
    14.9 dB / 6.5 dB
    Output power (Down/Up):
    20.1 dBm / 12.4 dBm
    FEC Events (Down/Up):
    0 / 305
    CRC Events (Down/Up):
    0 / 0
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    0 / 0
    Loss of Power (Local/Remote):
    0 / 0
    HEC Events (Down/Up):
    0 / 0
    Error Seconds (Local/Remote):
    50550 / 5359
    Whats the next step?
    Do we have to wait 5 days again, to see if the reset this time makes a difference?
    From reading other posts our noise margin and line attention looks pretty good.
    Solved!
    Go to Solution.

    ok there is certainly something restricting your connection speed as i posted earlier you should be connecting at 8mb with your current noise margin and attenuation
    you say about a slight crackle there should be no noise heard on the could you try another handset
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Everything is slower after maverick what can I do to speed things up?

    everything is slower after maverick what can I do to speed things up?

    Boot-up slow, NetFlix streaming erratic, wifi will not automatically connect after putting computer in sleep mode, Studio One 2 glitches after running for a while. None of these problems existed until I upgraded to Mavericks.
    Here is EtreCheck result:
    Hardware Information:
              iMac (21.5-inch, Late 2009)
              iMac - model: iMac10,1
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              12 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 5:4:0
    Disk Information:
              ST3500418ASQ disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 499.25 GB (357.95 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              PIONEER DVD-RW  DVRTS09 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Logitech USB Receiver
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
              PreSonus FIRESTUDIO_MOBILE 400mbit - 400mbit max
    Thunderbolt Information:
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.Logitech.Control Center.HID Driver (2.6.2) Support
              [not loaded] com.beceem.BeceemAppleWiMAXAdapter (5.2.56d13) Support
              [not loaded] com.fklt.driver (1.8.0) Support
              [not loaded] com.novatelwireless.driver.3G (2.2.8) Support
              [not loaded] com.novatelwireless.driver.3GData (2.2.8) Support
              [not loaded] com.novatelwireless.driver.DisableAutoInstall (1.2) Support
              [not loaded] com.sierrawireless.driver.SierraDevSupport (2.0.2) Support
              [not loaded] com.sierrawireless.driver.SierraFSCSupport (2.0.2) Support
              [not loaded] com.sierrawireless.driver.SierraFSRSupport (2.0.2) Support
              [not loaded] com.sierrawireless.driver.SierraHSRSupport (2.0.2) Support
              [not loaded] net.kromtech.kext.AVKauth (2.3.6 - SDK 10.8) Support
              [not loaded] net.kromtech.kext.Firewall (2.3.6 - SDK 10.8) Support
              [kext loaded] org.virtualbox.kext.VBoxDrv (3.1.6) Support
              [not loaded] org.virtualbox.kext.VBoxNetAdp (3.1.6) Support
              [not loaded] org.virtualbox.kext.VBoxNetFlt (3.1.6) Support
              [kext loaded] org.virtualbox.kext.VBoxUSB (3.1.6) Support
              [kext loaded] tc.tctechnologies.driver.PaeFireStudio (8028) Support
    Startup Items:
              PaeFireStudio: Path: /Library/StartupItems/PaeFireStudio
              VirtualBox: Path: /Library/StartupItems/VirtualBox
    Problem System Launch Daemons:
              [failed] com.apple.DumpPanic.plist
              [failed] com.apple.softwareupdated.plist
              [failed] com.apple.wdhelper.plist
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [not loaded] com.sierrawireless.SierraReset.plist Support
              [running] com.sierrawireless.SWoCMon.plist Support
              [failed] com.sierrawireless.SWoCTool.plist Support
              [running] com.zeobit.MacKeeper.AntiVirus.plist Support
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.facebook.videochat.[redacted].plist Support
              [loaded] com.genieo.completer.download.plist Support
              [loaded] com.genieo.completer.update.plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.zeobit.MacKeeper.Helper.plist Support
    User Login Items:
              Steam
              iTunesHelper
              ScanSnap Manager
              2Wire_DSL_Setup_Tool
              Android File Transfer Agent
              RealPlayer Downloader Agent
              TuneupMyMac
    Internet Plug-ins:
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
              FlashPlayer-10.6: Version: 13.0.0.206 - SDK 10.6 Support
              Default Browser: Version: 537 - SDK 10.9
              Flash Player: Version: 13.0.0.206 - SDK 10.6 Support
              AdobePDFViewer: Version: 8.3.1 Support
              QuickTime Plugin: Version: 7.7.3
              OfficeLiveBrowserPlugin: Version: 12.2.0 Support
              RealPlayer Plugin: Version: (null) Support
              Silverlight: Version: 5.1.30317.0 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin: Version: 1.0 Support
    3rd Party Preference Panes:
              Flash Player  Support
              Java  Support
              Logitech Control Center  Support
    Time Machine:
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 464.96 GB Disk used: 131.59 GB
              Destinations:
                        MacBackup [Local] (Last used)
                        Total size: 335.03 GB
                        Total number of backups: 203
                        Oldest backup: 2010-07-02 03:03:36 +0000
                        Last backup: 2014-05-02 15:58:01 +0000
                        Size of backup disk: Too small
                                  Backup size 335.03 GB < (Disk used 131.59 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                   2%          WindowServer
                   1%          DashboardClient
                   0%          fontd
                   0%          RealPlayer Downloader Agent
                   0%          imagent
    Top Processes by Memory:
              209 MB          com.apple.WebKit.WebContent
              98 MB          Safari
              86 MB          Finder
              49 MB          com.apple.IconServicesAgent
              37 MB          mds
    Virtual Memory Information:
              8.92 GB          Free RAM
              987 MB          Active RAM
              654 MB          Inactive RAM
              923 MB          Wired RAM
              573 MB          Page-ins
              248 KB          Page-outs

Maybe you are looking for