Exporting for Quicktime - progressive downloads -Help

I cant seem to export a QT mov that will progressively download on a webserver. In CS3 options I have played with the autoplay, streaming server, compress header settings etc. I am embedding it in an html page (using dreamweaver) Whatever I try, the webpage waits until it has fully loaded before it starts to play. Any ideas?

Don't use the QuickTime container, at least not from Premiere Pro. It seems to have the problems you're experiencing. Instead, use the "H.264" format option in the Media Encoder. You'll wind up with an H.264 file with an MP4 extension that will play back in QuickTime. I often use these for sending roughs to clients, as all you need to do is upload the .MP4 file to your web server, and email them a URL to the file. There's no need to build a player and embed it into a web page, as QT has a built-in browser module that will automatically playback in your browser window. Best of all, the file won't need to completely download before playing back--it will cache a few seconds worth of video and then start playing right away.
Another benefit of MP4 is that it can also be played back in Flash Player, so you can have a lot more flexibility with the format than QuickTime provides.

Similar Messages

  • Exporting to QuickTime difficulties (PLEASE HELP)

    I would like to start off by saying that Keynote 08 is an amazing presentation tool. I would like to convert the presentation that I have created and put it on a CD since all the transitions and the build in's and out's are set automatically. The presentation is currently set to a slide size of 1680 x 1050 and consist of 25 slides with about 17 them with full screen video playing. I have exported to QuickTime on numerous of times but for some reason or another it just doesn't export it with the full quality. Quicktime at times will get stuck as it is doing the presentation and it doesn't always follow the background music I have set. Sometimes it will finish before the song and sometimes the presentation will finish and the song will be interrupted by being cut short. When I export I'm currently using the manual advances and the Full Quality Large format. I only checked off the "include the slideshow soundtrack" option but like I said, the soundtrack doesn't completely always follow the presentation. PLEASE HELP! This is my company presentation and I have received a lot of positive feedback but I want to take it to the next level by making them in a DVD. Again, PLEASE HELP!

    Had the same problems as Albert8119. My presentation had five slides of varying length, each with multiple builds, also of varying length. Had a music presentation in the background of the presentation, together with individual voice-overs to each slide. As a Keynote presentation it was fine; so much so that the client asked for both QT movie and iDVD copies on disk. Exporting to either proved to be an absurdly complex task (it should be easy!) as timing in builds and transitions went awry. Eventually, after much experimentation, I found that lengthening the builds (often by several seconds) resulted in excellent QT movie and IDVD. It is a pity that such an excellent presentation program (leaving Powerpoint for dead) should come up short at that point. Apple can do better than that. Next time I'll try King_Leo's solution.

  • Exporting for DVD? Please help, I'm going nuts.

    Hi all,
    Pretty huge issue at the moment. I have a deadline to meet and I can't export my movie out of Final Cut to a DVD. How can I export the timeline for a DVD quality finished product? I don't have Compressor installed and I think this is a major issue. I tried printing to tape so I could bring the project over to Adobe Premiere and use Encore to publish the DVD, but every time I try to print to tape it constantly drops frames and it's hopeless.
    If anyone has any suggestions at all please help me!
    Thanks,
    Daryl

    thing is, I don't have FCS...I have FCP. I had my software installed where I bought my mac from, and I've came to realize now that I have nothing else but FCP installed...there is nothing else there that came with FCS. It's not really a huge problem because I can take my mac back whenever I want to get the owner to install any software I need, but that's kind of an issue at the moment considering I have deadlines. I can't afford to have my mac sitting at their office for a day or two at this point.
    If I can just figure out how to print this thing back to tape so I can bring it into Premiere on my PC and use Encore to make the DVD everything will be golden. I'm just having HUGE issues trying to print this to tape...which shouldn't be a problem in the first place. (that I have encountered anyway).

  • Trying to work on a script for QuickTime X, need help

    So, I've been working on scripts to restore some functionality back to QuickTime X (mainly the preferences part of QuickTime).
    http://web.me.com/celebi23/QuickTimeXScripts/Main.html
    http://discussions.apple.com/thread.jspa?threadID=2135161
    I'm now trying to implement the "Recent Items" selection.
    I almost have it all set up. It still won't make the selection though >_< The script won't open when I'm in QuickTime (via the script menu. all of the others open just fine. Have to run it from the AppleScript Editor to test it out). All of the individual Terminal commands work just fine though. Oh & there's an invalid connection with QuickTime apparently >_<
    <a class="jive-link-external-small" href="http://">http://i23.photobucket.com/albums/b355/eisnerguy1/Recent_Items.p ng
    "set recentItems to {"None", "5", "10", "15", "20", "30", "50"}
    display dialog (choose from list recentItems with prompt "Select the amount of Recent Items.")
    if recentItems is "None" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 0"
    else if recentItems is "5" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 5"
    else if recentItems is "10" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 10"
    else if recentItems is "15" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 15"
    else if recentItems is "20" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 20"
    else if recentItems is "30" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 30"
    else if recentItems is "50" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 50"
    end if
    display dialog "Please restart QuickTime Player for the preference changes to take effect." & return buttons {"Restart QuickTime Player"} default button 1 with icon alias ((path to me) & "Contents:Resources:QuickTimePlayerX_128.icns" as string)
    copy the result as list to {restartButton}
    if restartButton is "Restart QuickTime Player" then
    tell application "QuickTime Player" to quit
    tell application "QuickTime Player" to open
    end if"
    Still trying to figure out how to include the "Restore Defaults" button. The code would be something like this. It would go before the restart dialog. Not sure where in the code to include the "Restore Defaults" button though >_<
    "defaults delete com.apple.QuickTimePlayerX NSRecentDocumentsLimit"
    end if"
    Any help would be greatly appreciated

    Thank you. The script now loads but, the preference never stays set. I chose "5" & the recent items still continue to be added to the recent items list. I've got 10 items in my "recent items" list even though I chose "5". The Terminal commands themselves work fine though
    set recentItems to {"None", "5", "10", "15", "20", "30", "50"}
    display dialog (choose from list recentItems with prompt "Select the amount of Recent Items.")
    if recentItems is "None" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 0"
    else if recentItems is "5" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 5"
    else if recentItems is "10" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 10"
    else if recentItems is "15" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 15"
    else if recentItems is "20" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 20"
    else if recentItems is "30" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 30"
    else if recentItems is "50" then
    do shell script "defaults write com.apple.QuickTimePlayerX NSRecentDocumentsLimit 50"
    end if
    set buttonClicked to button returned of (display dialog "Please restart QuickTime Player for the preference changes to take effect." & return buttons {"Restart QuickTime Player"} default button 1 with icon alias ((path to me) & "Contents:Resources:QuickTimePlayerX_128.icns" as text))
    if buttonClicked is "Restart QuickTime Player" then
    tell application "QuickTime Player" to quit
    delay 3 -- give the app time to quit, otherwise the next command may fail
    tell application "QuickTime Player" to activate
    end if
    I took out the "Restore Defaults" because, according to the Terminal
    There is no (NSRecentDocumentsLimit) default for the (com.apple.QuickTimePlayerX) domain.
    Defaults have not been changed.
    Message was edited by: Alex Brofsky
    Message was edited by: Alex Brofsky
    Message was edited by: Alex Brofsky

  • Audio but no video for Quicktime in Safari-help?

    When I open a Quicktime file in Safari, only the audio will play---blank screen for video. I can play the video in an AOL browser, but not Safari-this only started with the newest upgrade . Anyone else have this problem? Thanks for any solution.

    Thanks again, QuickTimeKirk.
    I think the audio rate was to blame. I changed the audio format in QuickTime Player 7 Pro from (I think) Linear PCM to AAC and the kbps number from the default value 128 to 64. Then I changed the mark for the video rate from automatic to the option of setting a limit and set a suitable limit. That way I was able to control the total kbit/second rate for the exported .mov file so that it got a reasonable size.
    When I compare the source .flv file with the produced .mov file for the case when they have about the same total kbit/second rate, I can see that the .mov file is smoother or has less detail than the .flv file although the difference is not big. Increasing the video rate limit in QuickTime Player 7 Pro causes a bigger .mov file with better quality to be produced.

  • Using imovie 10.0 - No export for Quicktime and no export setting options

    Hi Everyone
    I am working with imovie 10.0 on Mavericks 10.9.2 and I am trying to export my video for better qualities then just using the share button and choosing file.
    It seems the export to quick time is not there anymore and I want to make sure I get the best quality possible.
    Any help with this?
    Thank you,
    Ash

    I'm in the middle of importing family home videos from VHS. It used to be awesome and I could export the exact file I was hoping to upload to a shared media server. Now my 480X640 Videos have black bars on the sides and I can change the proportions of my project! A 26min video at standard def resolution with 480X640 source video is a whopping 2.6Gigs!! These won't even stream from my beefy synology media server on a 30MBS UPLOAD because the buffering keeps pausing these massive files. I have 2 hour movies in 1080p that buffer faster than this 26 min SD VHS video!
    C'mon Apple, simplify but lets us dive in and find our original workflow so we can continue to use your products how we have been.
    Sincerley, loyal mac fan.. optimistic some export & project features start to magically appear in updates. :-(

  • Hello, I'm having the heap error in iMovie and/or it keeps crashing when I try to export using Quicktime. Any help?

    I'm trying to upload another lyric video I made so I need settings that will give all three of video, picture, and sound. I just want good quality, best quality perferable. Please help!

    Hi
    Can it be this that You mean ?
    Error -108 memFullErr  Ran out of memory [not enough room in heap zone]
    Turn off - TimeMachine usually works - re-try.
    (the Application down in the Dock - not the Device)
    But this can mean many thing's - My first thought is
    • Free Space on Start-Up hard disk. How much ? (other disks do not count)
    Yours Bengt W

  • Why doesn't created swf progressively download?

    I thought I had the perfect solution by being able to post a flash created video on a web page, the output is even smart enough to break up the different timelines into separate .flv files but I don't understand why the content that is created doesn't have the ability to progressively or intelligently download the file if the bandwidth required isn't quite enough. It would be really nice if the .swf created that drives the playing of the flv files was smart enough to do a progressive download. Alternatively, if there was a way to play the created file through the Adobe Media Player and it had the intelligence that would also be acceptable. Is adobe planning on adding that capability in any fashion?
    Thanks in advance!

    Encore's Flash export is a progressive download - maybe you meant streaming download? Encore doesn't support streaming download yet, but that also requires a streaming server (Flash Media Server) to host the FLV files.
    If that's not what you meant, then perhaps you meant a preloader? Encore doesn't create a preloader - if you want that, you'd need to create it in Flash, and then try to integrate it with the Encore Flash output.
    This is the first version of Encore (or any other DVD authoring tool for that matter) to offer Flash export. File a feature request for the tools that you need for it, and it's sure to improve from version to version.

  • Export for quick time running under windows?

    I am coming to Final cut X pro from Imovie. Under Imovie I could export a movie  that would run under quicktime for both Mac and Windows computers. Now using Final cut X pro, when I export for quicktime, my movie works fine using a Mac computer but fails under windows. When I attempt to open the movie quicktime tells me I have a problem with the codec. It indicates that I need an add on, but does not indicate which one is needed. Share works great for  output to my Ipad.   What I like to do is export to quicktime and use a windows computer to output to a wide screen tv. I down loaded the latest version of quicktime for windows.   Under the share option what codec option should I chose, or do I require an add in to Quicktime?   Thanks.

    Not that you should have to, but try to make your final export from Compressor to see if that works better. Perhaps this can help you isolate the problem. H.264 should work in Windows, so you could also check your export on a different PC to see if the problem is on the receiving end.
    I'll put in my vote here for Flip-for-mac getting their components to play nice with FCX. I have always found it a handy tool.

  • Hanging at white box before playing progressive download

    I began this discussion over on the Dreamweaver forum but was advised to move it here.
    Been tearing my hair out for days. I have  several flv files displaying just fine on my website. All I am am trying  to do is replace an enormous .flv file with a smaller file of the same  movie. The new smaller file is just 25 MB, compressed with a bitrate of 1000kbps. The test page that contains the smaller file previews just fine  of course in Dreamweaver, but after uploading the clip, the html page, the .swf files  (in the same directory) and the Scripts folder to my host's ftp server, the browser shows me that dreaded  white box on my test page for a full seven minutes until the file loads up completely. Then it plays through beautifully with no buffering. On the other pages of my site, the videos all show up without such a wait, even the enormous 179 mb flv!
    Here's the test page:
    http://www.ponyhighway.com/emz-test2.html
    The original page, which is working fine (except painful to view because of too large .flv file ), and from which the test page was created, is:
    http://ponyhighway.com/emz.html
    Flash videos also playing fine here:
    http://ponyhighway.com/otm.html
    I've scoured the code between the two pages (test and original) and can see nothing different except the name of the video clip.
    Could there be something quirky with the FLVPlyer_Progressive.swf?
    Some issue with moving between CS4 and CS3? (I'm now on CS3)
    Something odd or extra in the code on the test page that I'm just not seeing?
    BTW, I've asked for AutoRewind, but NOT AutoPlay (through Dreamweaver).
    Thanks in advance for any help given.

    Well now I get to come back with my tail between my legs to say that  the solution was one of those really dumb, DUH kinds of things...
    Just in case this can help anybody else I'll tell my sad story.
    In  an effort to get my flv file size WAY down, I was using a compression  formula I got from one of the FCP gurus. But it was meant for making  files to upload to youtube, so he had suggested keeping the streaming  setting at "None," and setting the bitrate to 4000, since youtube would  be adding further compression on their end. Silly me forgot to switch to  "Fast start" for the progressive download. That was the key. Along the  way to this revelation, I learned a ton about compression...I got my  file size WAY down, and lowered my bitrate considerably as well (900),  so although there is still some buffering on a slow connection, its not  too bad, and a GIANT improvement over what was there before.I can live  with it
    Here's the new page:
    http://ponyhighway.com/emz.html

  • Need some help here on the proper settings for quicktime exporting from imovie that won't degredate the footage from my handycam

    need some help here on the proper setting for quicktime exporting that won't denegrate my footage from handycam canon fs200

    What are the existing settings iMovie?
    Al

  • No progressive download for H.264?

    I was encoding a 6 minute video for web delivery in H.264 and it appeared that there is no provision for encoding for Fast Start or other setting to allow progressive download.  The 6 minute video compressed in H.264 to about 30MB and was only downloadable off our web host as a full download. This required about 20-25 seconds on cable modem.  Not a satisfactory result!
    Does anyone know how to set for progressive download?   I had the same experience when encoding into the variations in QuickTime.
    This is crazy. If this is not currently possible, does anyone know if Adobe is taking steps to remedy?  Is this remedied in CS4?  I have heard reports of excessive crashing in Premiere CS4 so I have been reluctant to upgrade.
    Regards.
    Jeff

    For a meaningful comparison, would you not have to view the same video, 
    encoded at the same bit rate for each format and in the same frame size and 
    frame rate?
    I am not the expert here, but it seems to me that this condition would 
    have to be met to farily compare. Easily done of course if you provide your own
    video for comparison, and that is exactly what I am trying to do.  Can QT 
    Pro output an H.264 in MPEG-4 as well as QT wrappers?
    I am going to experiment with both formats as well as Real Media and 
    Windows Media at similar settings.  I do not have a program to simply  encode
    swf's without taking a few extra steps. It is cumbersome. To my  knowledge,
    flv's need to be embedded into a web page or otherwise incorporated  into a swf
    to be widely viewable.  While I have a few players which can  play flv's
    directly, these are not as widespread as QuickTime or Real  Player.  Not sure,
    but I think that Window's Media Player can play  QuickTime files.  I do not
    try this too much so I am not positive.
    Thanks for the help and best wishes.  I will probably bite the bullet  for
    QT Pro in the next day or so. I think it is only around $30.
    Jeff
    In a message dated 7/23/2009 5:39:49 P.M. Eastern Daylight Time, 
    [email protected] writes:
    Than  H.264?!  That has certainly never been my experience.  My personal 
    computer stumbles on several H.264 files because it just ain't powerful 
    enough, but has never once failed to play a Flash video streamed from a web 
    site.
    **************Dell Deals: Treat yourself to a sweet deal on popular
    laptops! (http://pr.atwola.com/promo
    clk/100126575x1223100673x1201716527/aol?redir=http:%2F%2Faltfarm.mediaplex.com%2Fad%2Fck%2 F12309%2D81939%2D1629%2D7)

  • How do I get the progress meter for QuickTime to show up?

    When a QuickTime video is embedded in a page I can play it fine. I just wanted to know if there is a way to get a progress meter to show up to see where in the download the QT video is at. For example, I have a video that is 1:20 and when I go to the webpage I just get the big "Q". I don't know if the page is broken or loading because I have no progress meter. I looked at it in Firefox and it says "Trasferring data ..." in the status bar.
    Is there a way to get a progress bar for QuickTime video embedded in a webpage?
    Thank you.

    HI,
    *Is there a way to get a progress bar for QuickTime video embedded in a webpage?*
    Click one time on the video itself. That should prompt the slider.
    Make sure you have QT 7 installed. Go to Applications/Utilities. If you don't see QT 7, insert your SL disc. Open the Optional Installs folder, then open Optional Installs.mpkg
    An Installer will start... click Continue. When you get to the Installation Type in the window on the right you will see: Applications. Click the Disclosure triangle so it faces down. Select QuickTime 7 then click Continue.
    Restart your Mac.
    If you have QT7 installed then..
    Go to ~/Library/Preferences. Move these files to the Trash.
    com.apple.quicktime.plugin.preferences.plist
    com.apple.quicktimeplayer.plist
    See if that helps...
    Carolyn
    Message was edited by: Carolyn Samit

  • Mail constantly checks for new mail; downloads same emails repeatedly HELP!

    For the last three days (since 19th), Mail has been downloading the same emails over and over again. I first noticed a problem when about 20 spam emails that usually route to my Junk folder appeared in my Inbox. I thought I had just moved it incorrectly and deleted them, then they appeared again later.
    The mail jogger cycle (next to Inbox) keeps turning and turning like it can't stop checking for new mail. How do I get it to stop?? The emails are multiplying like gremlins in my Inbox and driving me nuts!
    Also, it only downloads new emails when I first open the app. I have to force-quit out of Mail, then reopen, and I will get a couple of new emails, and then ALL THE EMAILS FOR THE LAST THREE DAYS AGAIN.
    Mail was working fine for me until three days ago. The only thing I've changed recently is a Software Update on the 15th for QuickTime and iTunes.
    Please help! I tried to Repair Permissions and it didn't do anything. I also tried removing all messages from the server and that did nothing either.
    Mail Version 2.1
    THANK YOU ANYONE WHO CAN HELP ME!!
    iMac G5   Mac OS X (10.4.7)   2.1 GHz, 512 MB Memory

    UPDATE: I think I got it to stop checking mail. I have Yahoo mail and I checked my email through online Yahoo. I was able to delete a bunch of emails and it suddenly stopped checking for email in the Mail app.
    HOWEVER, it will NOT remove some of my junk emails. I was able to delete over 100+ of them. But one specific message (which I now have 8 copies of) will not go away. It is one of those 'Delivery Status Notification' emails. Is this a virus??
    I've tried Erasing Deleted Messages and Erasing Junk Mail. Neither helps. These emails won't go away.
    Help please! I would be very grateful.

  • Need serious help with quicktime for windows. PLEASE HELP!!! : (

    So i had quicktime on my windows program list and have had it since i bought the computer back in 08' well i got it back from a pawn shop after being down on my luck and they wiped everything out. ever since then i have been uploading pics and videos from my digital camera and the pics are fine but alot of the vids that i have put on here cannot be viewed and when i try to watch them i get an error message saying i need the latest version of quicktime. so i have tried uninstalling it after many failed update attemtps and i cannot get it to uninstall i have tried everything imaginable, from windows utility cleanup to removing it in add/remove programs to just deleting the files in the program list folder. Nothing. i get a prompt saying "the feature you are trying to use is on a resource that is unavailable." and then it goes on to say.. "Click ok to try again or enter an alternate path to a folder containing the installation package 'quicktime.msi' in the box below." and it already has two diffrent paths located in the entry box and i have tried them both and it keeps giving me the same message as i posted above. i am so lost and it dont help that i dont really know a whole lot about computers. i am stuck between a rock and a hard place.any input would be greatly appreciated. thanks!

    i get a prompt saying "the feature you are trying to use is on a resource that is unavailable." and then it goes on to say.. "Click ok to try again or enter an alternate path to a folder containing the installation package 'quicktime.msi' in the box below."
    Unfortunately, these sorts of msi-related troubles have gotten more complicated to deal with ever since Microsoft pulled the Windows Installer CleanUp utility from their Download Center on June 25. First we have to find a copy of the utility.
    Let's try Googling. (Best not to use Bing, I think.) Look for a working download site for at least version 3.0 of the Windows Installer CleanUp utility. After downloading the utility installer file (msicuu2.exe), scan the file for malware, just in case. (I use the free version of Malwarebytes AntiMalware to do single-file scans for that.)
    If the file is clean, to install the utility, doubleclick the msicuu2.exe file you've downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any QuickTime entries and click "Remove".
    Quit out of CleanUp, restart the PC and try installing QuickTime again. Does the install go through properly this time?
    (If you do find a clean download site for the correct version of CleanUp, please don't tell me where it is. Without wishing to sound paranoid (although I grant it does sound paranoid), there is a non-zero chance that posting links to download locations for the utility here at Discussions leads to that download location being shut down.)

Maybe you are looking for

  • Internal emails not being received.

    Hi, We have come across an issue in our office with our blackberrys. If we send emails from our Blackberrys to another internal email address it arrives on our computers in our outlook but not on the blackberry. It doesn't fail or not sent it goes as

  • How to manipulate arrays using case statements and boolean conditions?

    In the vi that is attached I am trying to compare two values in two different arrays and delete the value that is equal to zero.  The values of each array are rounded to the closest integer.  Then I attempted to apply the ">0" boolean as the conditio

  • Read infotype records using the classes

    Hi All, In my system i can see many classes with cl_hrpa* Here i want to read a infotype record using these classes. I want finally the data in PA0008 or a record in P0008 format. i tried using the various classes like cl_hrpa_masterdata_factory if_h

  • Iweb and paypal buttons

    Hi i use paypal buttons on one of my shop sites, is it possible to put paypal buttons onto a site in iweb. When i create a payment button in paypal, it creates some code which i copy and paste into my web page where i want the payment button to appea

  • How do I rebuild my desktop, using OS x 8.3?

    How do I rebuild my iMac desktop using OS X 8.3?