Video Stalls - Larger File Size

Just downloaded Battlestar Galactica season 2 and the video stalls at full screen. Do not have this problem with previous Battlestar Galactica shows and movies that I have downloaded in the past.
I notice the File Size and Total Bit Rate of the new shows are three times greater in size than the shows I've downloaded in the past.
Using the utility ativity monitor, I notice I'm maxing out my CPU when I go to full screen which I think is causing my video stall.
I also notice that now my previous TV show downloads don't fully fill my screen like that did before the new downloads.
I hope someone might know how I can get my TV shows back to working normal at full screen and why the new TV shows file sizes are larger than before.
Thanks for Your Help
Ricky
PowerBook G4 15" LCD 1.67GHz   Mac OS X (10.3.9)  

Thanks for the reply. Shortly after I posted, I started to relize that Apple was offering better TV Show quality which results in larger file sizes. I also went to my Energy Saver section in System Prefrences and found my Optimize Energy Settings was set for Presentations. I changed it to Highest Performance which resolved the issue.
iTunes 7.0.2
Quicktime 7.1.3
RAM 512MB
Thanks for your help.

Similar Messages

  • Need to get large file sizes down to downloadable sizes-how?

    I am using Compressor 4 and have several professional videos I produced with Final Cut Studio in QuickTime/.MOV format using ProRes 442. They are all 720p and of course, all have large file sizes. I needed to convert them so they are compatible with iTunes as well as Apple devices (AppleTV, iPad/iPod/iPhone, etc). They also need to be downloadable in a reasonable time and I of course want to maintain a quality image. Several of the videos are about an hour long, some a little more.
    I an unable to get most of these files to be small enough for practical download and still maintain an acceptable quality. For example:
    I have one video (QuickTime rendered from FCPS) that runs 54 minutes. 1280x720, ProRess 422, Linear PCM with a Bit rate of 72.662. The best I seem to be able to get out of compressor is to use the setting options for "HD for Apple Devices (5 Mbs)" which gives me a file that's just over 2Gb. Not bad, and the quality is still very good, but the file size is just too big for people to download. I get reports of people getting estimates of 77 hours to download this one file.
    I did try using the setting under Video Sharing Services / Large 540p Video Sharing just to see what it would give me, but it really wasn't that much smaller and the quality was noticeably degraded.
    I'm confused as to what to do about this. I have downloaded things from iTunes before that are good quality, about an hour and their file sizes are simply bnot this big.
    Can anyone give me some advice? Thank you. Grateful for anything you can offer.
    MC

    If you're not concerned with precise average bitrate, use h.264 codec, set bitrate to "automatic" and use the quality slider. Be sure to have "keyframes" on "automatic"; every 24 frames or so makes h.264 quite inefficient and is only useful for live-streaming, where you want people to be able to resynchronise as quickly as possible. Having multi-pass enabled might help, but I'm not sure what it does when using constant-quality encoding.
    Do a test-encoding of a representative clip of maybe about rwo minutes or so, play with the quality slider and see how far down you can go and still be satisfied with the quality. Using "automatic" bitrate uses as many bits to encode each frame as is necessary to get the required quality, and file sizes will vary depending on the type of material. Complex textures and high motion will use more bits, still frames and slow pans will use very little.
    A light chroma-channel denoising may help improve perceived quality, as may very light sharpening in case you scaled down the material.
    If you're still not happy with the bitrate vs. quality tradeoff, try reducing the resolution, but generally you should get 720p down to around 2.5 to 3.0 Mbps with adequate quality.
    On the other hand, If someone needs 77 hours to download 2 GB, they have another problem anyway. That sounds like a 56k modem connection. What's he doing trying to download HD content anyway?
    Bernd

  • Creating .pdf from a ppt or .doc in acrobat 9 resulting in strangely large file sizes

    I am printing to .pdf from Microsoft Word and Powerpoint (previously Office 07 - now Office 10) and the file sizes are sometimes doubling in size. Also, for some larger documents, multiple .pdfs are generating as if acrobat is choosing where to cut off a document due to large file size and generating secondary, tertiary, etc., docs to continue the .pdf. The documents have placed images (excel charts, etc) but they are not enormous - that is until they are being generated into a .pdf. I had hoped that when i upgraded to Office 10, this issue would go away, but unfortunately, it hasn't. Any ideas? thoughts? Thanks so much!

    One thing that can happen with MS Office applications when an image contains transparency is the "image" is actually composed of multiple one pixel images when converted to PDF. This could be confirmed by examining the file. Try selecting the images using the TouchUp Object tool to see if what looks like a single image it entirely selected.

  • Aperture is exporting large file size e.g. original image is 18.2MB and the exported version (TFF 16 Bit) is 47.9MB, any ideas please

    Aperture is exporting large file size e.g. original image is 18.2MB and the exported version (TFF 16 Bit) is 47.9MB, any ideas please

    Raws, even if not compressed, Sould be smaller than a 24-bit Tiff, since they have only one bitplane. My T3i shoots 14 bit 18MP raws and has a raw file size of 24.5 MB*. An uncompressed Tiff should have a size of 18 MP x 3 bytes per pixel or 54 MB.
    *There must be some lossless compression going on since 18 MP times 1.75 bytes per pixel is 31.5MB for uncompressed raw.

  • Facebook application grow large file size

    Why facebook applications grow larger and larger file size. What can I do. Since this program is to use the file size is big time. I use facebook version 4.0.3 on iphone4 run on iOS 5.0.1.
    thank you.
    Eak.

    Most of the logs rotation for the different componets can be set in EM console but if you just want to do it with a cron or script here is what I have used in the past. Edit it to your needs.
    #!/bin/sh
    ORACLE_HOME=/home/oracle10FRS
    apache_logs=$ORACLE_HOME/Apache/Apache/logs
    webcache_logs=$ORACLE_HOME/webcache/logs
    sysman_logs=$ORACLE_HOME/sysman/log
    j2ee_logs=$ORACLE_HOME/j2ee/OC4J_BI_Forms/log/OC4J_BI_Forms_default_island_1
    also_j2ee=$ORACLE_HOME/j2ee/home/log/home_default_island_1
    max_size=1500000000
    for file in `ls $apache_logs/*_log`
    do
         size=`ls -l $file | awk '{print $5}'`
         echo "File $file is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$file
         fi
    done
    for wfile in `ls $webcache_logs/*_log`
    do
         size=`ls -l $wfile | awk '{print $5}'`
         echo "File $wfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$wfile
         fi
    done
    for sfile in `ls $sysman_logs/*log`
    do
         size=`ls -l $sfile | awk '{print $5}'`
         echo "File $sfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$sfile
         fi
    done
    for jfile in `ls $j2ee_logs/*.log`
    do
         size=`ls -l $jfile | awk '{print $5}'`
         echo "File $jfile is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$jfile
         fi
    done
    for j2file in `ls $also_j2ee/*.log`
    do
         size=`ls -l $j2file | awk '{print $5}'`
         echo "File $j2file is $size bytes"
         if [ "$size" -ge "$max_size" ]
         then
              echo "That's too big. Truncating"
              >$j2file
         fi
    done

  • Media Encoder (AMC) F4V - none of the video setting effect file size????

    When I used to use sorenson squeeze, mov  i could get a web flick down to 15 MB by reducing frame rate or size.
    when using AMC - F4V - no matter what size or settings the same movie satays at about 34MB (with olny slight varistions if i tweek audio)
    How do i get the file size smaller if none of the video setting effect file size????

    In the limited amount of comparison testing I've done, I've found that 2-pass VBR files are consistently smaller than CBR files, all other things being equal. They're not always a great deal smaller, but they've never exceeded the size of the CBR files, and this goes for any type of encoding I've done, whether it's MPEG-2 for a DVD, or a web format like WMV, FLV (VP6), or H.264. This seems to be true even when the target and the maximum bitrate for the 2-pass VBR files match the bitrate "quantity" of the target bitrate of the 1-pass CBR files, and I've noticed this in any encoding application I use, whether it's AME, Sorenson Squeeze, or TMPGEnc Xpress. When analyzing my VBR-encoded files using an application such as MediaInfo, the average bitrate that is reported is never even close to my max bitrate, and is usually well under my target bitrate.
    I see two reasons for this:
    If you're encoding with CBR and set your bitrate at 1000kbps, for instance, the encoder will simply allocate 1000kbps of bandwidth (divided by the frame rate) to each and every frame of video, regardless of how complex or simple each frame is. Each frame will be compressed to as near 1000kbps (divided by the framerate) as possible. Using CBR, you can more or less estimate the end file size by multiplying the bitrate by the duration in seconds. Think of it as filling a series of water glasses: with CBR, you fill each glass full, regardless of how much each individual actually wants to drink.
    If you're encoding with 2-pass VBR and set your maximum bitrate to 1000kbps and (for argument's sake) your target bitrate to 1000kbps as well, the encoder will use the first pass to figure out how much available bandwidth is needed at each individual point of time, and that writes that to a log file that the second pass of the encoder then uses to properly allocate those available bits to the frames that need them the most. If a particular passage of the video can be encoded at a lower bitrate, and still maintain a prescribed level of visual quality, the encoder will simply put the squeeze on a little more. Back to our water glass analogy from above, this is the equivalent of filling each water glass with only as much water as each individual wants.
    For example, using the max/target bitrate set above, a low-motion/low-complexity passage of video may be able to be encoded at only 500kbps and yet maintain the visual quality of 1000kbps. This results in a fewer bytes needed to encode that particular duration of the video, and usually there are multiple sections in a video that can be treated as such. This has a cumulative effect and subsequently results in a final encoded video that has a smaller file size than it would had it be encoded at the same bitrate, but with CBR encoding.
    I'm not a software engineer or mathemagician, so I can't back all this up with empirical evidence, but in real-world practice, these have been my observations. Long story short: I always use 2-pass VBR for web-distributed encodes, and enjoy both smaller and better-looking files, at the expense of a coffee break.

  • Saving jpeg and png files large file size

    Ive recently purchased web premium 5.5 and Im trying to save files in jpeg and png format in Photoshop and Im getting unexpectedly large file sizes, for example I save a simple logo image 246x48 which consists of only 3 basic colours and when I save it as a jpeg quality 11 it reports the file size in the finder as 61.6k, I save it as a png file and its 60.2k also I cropped the image to 190x48 and saved it as a png and the file size is actually larger at 61.9k saving as a jpeg at quality 7 the files size is a still relatively large 54k.
    I have a similar png non indexed colour logo on my mac I saved in CS3 on a pc which is actually larger at 260x148 and it's only 17k and that logo is actually more complex with a gloss effect over part of it. Whats going on and how do I fix it, It's making Photoshop useless especially when saving for the web
    Thanks

    Thanks I had considered that but all my old files are reporting the correct files sizes I have been experimenting and fireworks saves the file at png 24 at 2.6k and jpegs at 5.1k, but I don't really want to have to save the files twice once cut from the comp in photoshop and again in fireworks juggling between the two applications is a bit inconvenient even with just one file but especially when you have potentially hundreds of files to save.
    Ive also turned off icon and windows thumbnail in photoshop preferences and although this has decreased the file size they are still quite large at 27k and save for the web is better at 4k for the png and 16k for the jpeg. Is there anyway to get Fireworks file saving performance in Photoshop ? it seems strange that the compression in Photoshop would be second rate in comparison to fireworks given they are both developed by Adobe and Photoshop is Adobes primary image editing software.

  • Does FW CS5 Mac crap out w large file sizes?

    Does FW CS5 Mac crap out with large file sizes like CS4 did? It seems like files over a 4-5MB tend to be flaky... Is there an optimum file size? I'm running a Mac Tower 2.93 GHz Quad Core, w 8 GB RAM

    Why not download the trial version and find out?

  • Trying to email a video and the file size is to large to attach.

    Trying to email a friend a video and it says the file size is to large to attach.  How do I change this?

    Go into your photo-video program and change the file size to the smallest resolution possible. Also limit the video to less than 30 seconds to a minute.
    Then try sending again. The problem you are having is because the file is too large to send via the method you are using.
    Good Luck

  • Trying to make video smaller but file size comes out larger

    I'm not aquainted with how to reduce both the file image and keep the file size small also.
    I start out with a 3mb file that has a window of 640 x 474.
    I run it through streamclip and re-save export to quicktime with a window size of 320 x 240. I would think that this would cut the file size in half also, but the file, although it now displays in the smaller window size, which I need for placement in a web page, the file size has jumped up to 14mb. Apple Intermediate Codec and 50% quality setting. I don't see how the file has bloated in size to such a great degree.
    Please help me discover the error of my ways.
    Ken

    Thanks for responding MartinR, I tried the H.264 codec with MPEG-4 ACC audio and that brought it down to about a 1.5mb filesize on one and 3.5mb filesize on the the other. I still don't know what the discrepancy is to make theme different in file size now, but I do now have two files that work fine on the internet at the new screen size. I appreciate your input and response to my question.
    Ken
    To your question above:
    Frame size: 640 x 474
    FPS: 29.91
    Compression: ACC, Stereo, 48,000 KHz
    Sorenson Video 3 Decompressor Millions +

  • Excessively large file sizes

    I'm pretty new to Motion, so bear with me. When I export to mov, the video file I end up with in enormous, and my computer won't even play it without stalling. I'm sure I could use a better graphics card, but I have a MacBook Pro and usually it does fine with high def video files.
    For instance, I'm working in 1080p, and I have a file that is 10GB for about 4 minutes of video (no audio).
    Even making a simple text video, the file size is bigger than it should be. I have a 10 second video that consists of 1 image and a simple text effect and it's close to 150 MB. The movies are projected on large surfaces so I do need high def; I've seen many high def movies that are much smaller than this.
    Are there any compression or file size settings, without buying Compressor? I'm not expecting much - I know actually buying Compressor would give me more options - but files this size aren't even useable.
    Thanks.

    You can select the codec you want during the export process. Share>Export Movie (or command e). In the screen shot below, I have a 1080p h.264 clip in a Motion project. My export choices for codec are in the drop down menu and what I choose depends on what I'm ultimately going to do with it. For example, if I needed to preserve an alpha channel, I would choose Pro Res 4444. (Which, incidentally, produces a 10 second video that's nearly 400 MB. If I instead chose the highly compressed H.264, the same ten second video is only 19 MB.)
    Good luck.
    Russ

  • Large file size and fuzzy type

    I'm new at using FCE2 and composed my first short 4 minute video. It includes a still image, a PSD layered file which I discovered was quite handy, a few clips and type using the type generator. I exported it to QuickTime movie. Three observations: I was floored by the nearly 1GB size, fuzzy type, and the file on the hard drive says it's a FCE movie inclusive of the little FCE icon by the file name. I was expecting to see a QuickTime icon with file name and the type of file is a QuickTime movie. Is all this normal? I'm very disappointed in the fuzzy type. Oh, also, the still image became blurry. Why?? Just so you know, the still image was a special file 640x480 with a pixel aspect ratio of D4/D16 Anamorphic
    I saved the project under a new name and redid it taking out the Photoshop image, removing it from the bin also, and the new movie exported even larger, over a gig in size. Huh??

    Thanks for the reply Tom. After I posted the first time I went to the Finder, Get Info, and I saw that I could change the 'Opens with' to QuickTime and therefore it became a QuickTime file. About that Anamorphic business I read a 'how to' on dealing with images before bringing them into video. The tip says in the 'New' file dialogue box to choose 640x480 size and in the pull down menu at the bottom where you can choose the 'Pixel Aspect Ratio' it was suggest to use that Anamorphic setting. I did it but it certainly didn't look right but I went with it.
    Again after I posted I looked at the Format of one of the clips and saw the size to be 720x480, Compressor is DV/DVCPRO-NTSC, Pixel Aspect is NTSC-CCIR 601, Anamorphic field is blank. I'm running Photoshop CS2. So I went back there and created a new blank file to use a template for dealing with stills but this time I used the Preset pull down menu and chose NTSC DV 720x480 with guides and the Pixel Aspect Ratio automatically loaded D1/DV NTSC (0.9), clicked Ok and viola, the blank file looks exactly like the Canvas in FCE. I haven't played with a still with this new setting but I will try it on the little project I'm working on.
    As for viewing it, I am looking at it on my Mac flat screen. I went into QuickTime Preferences and checked the box for high quality, thank you. Thanks for reassuring me on the file size.
    I also don't know what "D4/D16 Anamorphic" means.
    I don't understand the fuzzy type. I'm aware these are 72 ppi files and video is not resolution dependent but rather pixel dependent. Computer monitors display at 72 ppi, televisions are higher. I have yet to complete the process of burning a DVD and playing it back on a TV. Maybe that's where I'll see the type showing up sharper.
    At any rate, just dealing with this itty bitty project tells me I have a lot to learn about video, never mind learning about how to use FCE as well.

  • Crazy large file sizes on capturing from standard tape....

    All, first post here, and only because I'm at my wits end!
    I've been using iMovie for sometime with my current camera (Panasonic PV-GS180). Those file sizes were large, but reasonable.
    Since then, I've decided to bump up my skills and work with FCE. Great product, but there is one thing that is preventing me from using it.... CRAZY LARGE FILES!!
    I had a 42GB file size for 10 or 20 mins of capture time! That's just crazy, isn't it?
    I used Easy Setup to choose DV-NTSC 32kHZ (My recorder is using 12-bit audio). My scratch disk is my local disk, which has 43GB avail. The top of the capture window shows "Total Free Time (AV) 208.7 min".
    But I only get 10 or 20 minutes before the capture hangs, because my drive is full! Am I doing anything wrong? Will I have to go back to iMovie to import my video?
    Thanks for your advice and suggestions!

    Sorry guys, I thought I gave enough information. But thanks so much for staying with the discussion! Keep in mind, that I'm just a network engineer, and am a newbie at this FCE thing!
    I thought there was only one way to capture, so my apologies for not including all the information. Yes, I'm using the capture now, as that's the only way I knew how. I'll look into the "Log and Capture".
    As far as the types of files, I am unsure. It does not have the file extension at the end of the filename. However, in the info dialog box, it has:
    Kind: QuickTime Movie
    Dimensions: 720 x 480
    Codecs: DV/DVCPRO - NTSC, Integer (Big Endian), Timecode
    Channel Count: 2
    Again, I'll look into the Log and Capture. Maybe it will be more efficient?
    Thanks all!!

  • Can't download large file-size Apps

    I have about 700MB free on my iPad. I have been trying to download a 270MB app since last night. I am using a Wifi connection. Everytime I attempt the download it gets about %70 through and then fails, either removing the app completely from the device or just starting over from the beginning again.
    Is there a limit to file sizes that can be downloaded directly onto the iPad?
    I can't use iTunes to sync the iPad at this time and it will be several days before I am able to do that.
    Am I out of luck here? Or is there a way to convince my iPad to play nice?

    Even though you have 700 mb free, that may not be enough.  You typically need 3 or more times the app's size during installation.  If you really need this app before you can use your computer, you can delete videos to make room.  Just tap and hold on the video's thumbnail until a circled white X appears.  Tap the X to delete the video.  You can put it back when you can access your computer.

  • Is it best to upload HD movies from a camcorder to iMovie or iPhoto.  iMovie gives the option for very large file sizes - presumably it is best to use this file size because the HD movie is then at its best quality?

    Is it best to upload hd movie to iPhoto or iMovie?  iMovie seems to store the movie in much larger files - presumably this is preferable as a larger file is better quality?

    Generally it is if you're comparing identical compressors & resolutions but there's something else happening here.  If you're worried about quality degrading; check the original file details on the camera (or card) either with Get Info or by opening in QuickTime and showing info. You should find the iPhoto version (reveal in a Finder) is a straight copy.  You can't really increase image quality of a movie (barring a few tricks) by increasing file size but Apple editing products create a more "scrub-able" intermediate file which is quite large.
    Good luck and happy editing.

Maybe you are looking for

  • My phone does not know who is calling even thought that number is in contact list

    Hi everyone, I recently synced contact. The phone number style is now XXX-YYYZZZZ. What happened is when someone is calling me, the phone did not recognize who that is. Anyone know how to fix this? I do remember the phone style in my contact used to

  • 24fps output to tape doesn't work

    I have a 24fps sequence (which I'm outputting to film) and want to output it to DV tape. But when I print to tape, or even playback the sequence with my deck recording it, only the first image appears, with no movement. I'm using a Sony DVCAM DSR-11

  • OCI version 10.1.0.2.0 is not supported in Toad

    I have upgraded my 9203 Oracle database to 10.1.0.2. Now when I connect to the database via TOAD 7.6, it gives me the following error: "OCI version 10.1.0.2.0 is not supported" Can some one let me know about how to solve this problem. Thanks in Advan

  • Cisco ACS 4.2 migration to ACS 5.4 advice

    Hello all, we are planning migrating off our ACS 4.2.0.124 ( non appliance ) to ACS 5.4. I'm looking for any advice or tips from anyone that has done the migration. Is the migration tool intrusive or can it be run at anytime? I thought about not usin

  • Wrapping text - accordion header

    I'm new at this and I need to be able to wrap text in something like (okay... just like) an accordion. That is to say I have a fixed width to deal with and will be dynamically generating the 'label'. I have read that the label merely sets the text of