Saving movie for the web

Hello again!
So I finished a short 4 minute movie, mostly made of graphics and a screencast. I'm not sure what's the best way to save it for a website and have it stream fast but also maintain good quality. I'd appreciate any kind of assistance please!

Hi
Good going with figuring that out...I didn't know if you were uploading to vimeo or youtube or what...
Your website probably has a server with some datarate and flash probably has settings for streaming it or playing only after buffering some portion of the download to people...I just don't know as I don't use flash... but this part of your question in your post....
have it stream fast but also maintain good quality
will probably best get answered with help here if we know more about what your project settings are ( what you are exporting )...or....you can just experiment with different settings when making your FLV file..
good luck
Rod

Similar Messages

  • Exporting movie for the web

    I have a one minute, forty second trailer for my movie that I want to put on our website. I need to export the trailer from my Final Cut Pro timeline and give it to my web guy in a form that can be used for viewers with Windows Media Player. Any ideas on what the best way is to do this? Thanks!

    Analog out from DVD player to your DV device (camcorder, VTR or converter) then Firewire from the DV device to your Mac. In FCP, set device contol to "Non-Controllable Device" and use Capture Now.<<</div>
    Sorry ... posted to the wrong question!
    To answer your question, if you want to do it on a Mac, you'll need to make the purchase. But if you have a Windows system, you can download the free Windows Media Encoder from Microsoft. Lay the movie off to tape then connect your camcorder or VTR to your Windows system and you can encode in RT for free!
    -DH

  • Can I convert a book made in iPhoto to a quicktime movie for the web?

    Hi,
    Please help, I have a great book that I have made in iPhoto and had printed but would like to post it to my mac website for people to be able to view with all the photos, titles, and audio. Is this possible?
    Thanks.
    Jim

    James:
    Welcome to the Apple Discussions. There are two ways you can do that.
    While in the book mode, do a Print to PDF in the Print window but select the Send PDF to iPhoto option. This will start an Automator process that converts each page to a jpg file and imports it into a user determined album in iPhoto. NOTE: when the process is complete and it's time for you to name or select an album a window will be presented. BUT if often stays behind the other windows and you'll think the process has failed. So make sure you can hide the other windows if it doesn't present itself to you. It took me several tries before I realized what was happening.
    Once the pages are in iPHoto as separate files, you can try:
    1 - put them in an album and add to an iWeb photo page where they can be viewed individually or as a slideshow.
    2 - create a slideshow in iPHoto, export to Quicktime and post that QT movie file to an iWeb page.
    3 - create an iDVD project, add a slideshow and import the stills into iDVD to create a slideshow with music. A great gift to go along with a book. This method is explained in Tutorial #6.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Compressing movie for the web

    Hello All!
    Im fairly new to director but have lots of experience with flash. Hope it will become handy
    I have eLearning movie that I plan to distribute over the internet but the published dcr is 22mb which is not ideal for preloading. I guess that I need to optimize all the images and audio files inside the movie. My target file size is about 3 to 5mb.
    I have some questions, ill be glad to get some inputs
    1. as I understand I can compress individual images using director or using external editor (like fireworks). Which way is the preferred one?
    2. Since I have hundreds of images to optimize I wonder if there is any script or xtra that knows to batch the compression task?
    3. Regarding to audio compression. Can I use external editor? Or I must delete the audio files and re-import them as mp4?
    Im using director 11.5 on mac.
    Thanks a lot
    Shay

    Hi again,
    I investigate the dir file and I discover lots of audio files in swa format. All of them contain makeover voice. Im pretty sure  they should be converted into mp3 or mp4. The big question is how do I do it?
    Remind you that i'm using director 11.5 on mac which has not compress audio option in publish settings.
    Thanks
    Shay

  • Saving JPG to PNG using Save for the Web

    Morning
    I came across Paul Riggott's script for saving PSD to PNG which I changed to JPG to PSD.
    The only problem with this is that the file size in most cases is larger than the original.
    Is there a way to do a save as for the web as well?
    Here is the  original code:
    #target photoshop
    var imageFolder = Folder.selectDialog("Select top folder to process");
    var folderList=[];
    if (imageFolder != null)  {
    processFolder(imageFolder);
    folderList.unshift(imageFolder);
    createPNGfromJPG(folderList);
    function createPNGfromJPG(folderList){
    for(var a in folderList){
      var fileList = folderList[a].getFiles ("*.jpg");
       for (var z in fileList){
        var file = fileList[z];
        open(file);
        var Name = fileList[z].name.replace(/\.[^\.]+$/, '');
        var saveFile = File(decodeURI(fileList[z].path+"/"+Name+".png"));
        SavePNG(saveFile);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    function processFolder(folder) {
        var fileList = folder.getFiles()
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
    if (file instanceof Folder) {
      folderList.push(file); 
           processFolder(file);
    function SavePNG(saveFile){
        pngSaveOptions = new PNGSaveOptions();
        pngSaveOptions.embedColorProfile = true;
        pngSaveOptions.formatOptions = FormatOptions.STANDARDBASELINE;
        pngSaveOptions.matte = MatteType.NONE;
        pngSaveOptions.quality = 1;
    pngSaveOptions.PNG8 = false;
        pngSaveOptions.transparency = true;
    activeDocument.saveAs(saveFile, pngSaveOptions, true, Extension.LOWERCASE);
    Any help or support to head me in the right direction would be appreciated.
    Iain

    This uses "Fitimage"....
    #target photoshop
    var imageFolder = Folder.selectDialog("Select top folder to process");
    var folderList=[];
    if (imageFolder != null)  {
    processFolder(imageFolder);
    folderList.unshift(imageFolder);
    createPNGfromJPG(folderList);
    function createPNGfromJPG(folderList){
    for(var a in folderList){
      var fileList = folderList[a].getFiles ("*.jpg");
       for (var z in fileList){
        var file = fileList[z];
        open(file);
        var Name = fileList[z].name.replace(/\.[^\.]+$/, '');
        var saveFile = File(decodeURI(fileList[z].path+"/"+Name+".png"));
        FitImage(640,640); //Resizes  to the longest size
        //FitImage(128,128);
        savePNG8SFW(saveFile);
        app.activeDocument.close(SaveOptions.DONOTSAVECHANGES);
    function processFolder(folder) {
        var fileList = folder.getFiles()
         for (var i = 0; i < fileList.length; i++) {
            var file = fileList[i];
    if (file instanceof Folder) {
      folderList.push(file); 
           processFolder(file);
    function savePNG8SFW(saveFile) {
        var desc8 = new ActionDescriptor();
            var desc9 = new ActionDescriptor();
            desc9.putEnumerated( charIDToTypeID('Op  '), charIDToTypeID('SWOp'), charIDToTypeID('OpSa') );
            desc9.putEnumerated( charIDToTypeID('Fmt '), charIDToTypeID('IRFm'), charIDToTypeID('PNG8') );
            desc9.putBoolean( charIDToTypeID('Intr'), false );
            desc9.putEnumerated( charIDToTypeID('RedA'), charIDToTypeID('IRRd'), charIDToTypeID('Sltv') );
            desc9.putBoolean( charIDToTypeID('RChT'), false );
            desc9.putBoolean( charIDToTypeID('RChV'), false );
            desc9.putBoolean( charIDToTypeID('AuRd'), false );
            desc9.putInteger( charIDToTypeID('NCol'), 256 ); //Number of colours.
            desc9.putEnumerated( charIDToTypeID('Dthr'), charIDToTypeID('IRDt'), charIDToTypeID('Dfsn') );
            desc9.putInteger( charIDToTypeID('DthA'), 100 );
            desc9.putInteger( charIDToTypeID('DChS'), 0 );
            desc9.putInteger( charIDToTypeID('DCUI'), 0 );
            desc9.putBoolean( charIDToTypeID('DChT'), false );
            desc9.putBoolean( charIDToTypeID('DChV'), false );
            desc9.putInteger( charIDToTypeID('WebS'), 0 );
            desc9.putEnumerated( charIDToTypeID('TDth'), charIDToTypeID('IRDt'), charIDToTypeID('None') );
            desc9.putInteger( charIDToTypeID('TDtA'), 100 );
            desc9.putBoolean( charIDToTypeID('Trns'), true );
            desc9.putBoolean( charIDToTypeID('Mtt '), false );
            desc9.putInteger( charIDToTypeID('MttR'), 255 );
            desc9.putInteger( charIDToTypeID('MttG'), 255 );
            desc9.putInteger( charIDToTypeID('MttB'), 255 );
            desc9.putBoolean( charIDToTypeID('SHTM'), false );
            desc9.putBoolean( charIDToTypeID('SImg'), true );
            desc9.putBoolean( charIDToTypeID('SSSO'), false );
                var list3 = new ActionList();
            desc9.putList( charIDToTypeID('SSLt'), list3 );
            desc9.putBoolean( charIDToTypeID('DIDr'), false );
            desc9.putPath( charIDToTypeID('In  '),File( saveFile) );
        desc8.putObject( charIDToTypeID('Usng'), stringIDToTypeID('SaveForWeb'), desc9 );
        executeAction( charIDToTypeID('Expr'), desc8, DialogModes.NO );
    function FitImage( inWidth, inHeight ) {
    if ( inWidth == undefined || inHeight == undefined ) {
      alert( "FitImage requires both Width & Height!");
      return;
    var desc = new ActionDescriptor();
    var unitPixels = charIDToTypeID( '#Pxl' );
    desc.putUnitDouble( charIDToTypeID( 'Wdth' ), unitPixels, inWidth );
    desc.putUnitDouble( charIDToTypeID( 'Hght' ), unitPixels, inHeight );
    var runtimeEventID = stringIDToTypeID( "3caa3434-cb67-11d1-bc43-0060b0a13dc4" );
    executeAction( runtimeEventID, desc, DialogModes.NO );

  • Problems with PSE 10 when saving for the web.

    I'm having problems saving for web with PSE 10. I edit in RAW, edit in PSE 10, save as Jpeg, resize and save for the web.  Results are muddled and not sharp (looks cartoonish). Also, there is no metadata when you look at the image properties.  I uninstalled the program and installed again. No change.

    Are you resizing the photo before save for web?
    What settings are you using in the save for web dialog for the jpeg quality?
    If you compress the jpeg too much (low quality settings below 60), that can make your photos look bad.
    And save for the web in pse 10 automatically strips any metadata in order to keep the file sizes smaller.
    Also, the save for web in pse 10 has a bad habit of not remembering your last used settings, so it's good to verify that your actually set to jpeg instead of the default GIF setting.
    Message was edited by: R_Kelly

  • Saving a pdf doc optimized for the web

    i am trying to find out if there is a way to set the subject and keyword fields before saving as a pdf.
    What i am trying to achieve is that the pdf is optimized for the web, so search engines can read the pdf document for keywords etc.
    Thank you

    Inspector > Document > Info
    Peter

  • Advice on saving DVD video and re-sizing for the web

    Hello...
    I'm looking into purchasing a copy of Adobe Premiere - but I need advice on which version I need - and if it can do what I'm after.
    I want to transfer my own video work from DVDs and save them as MPEG4 files. I then want to upload them on to my website. They'll be about 10 minutes each each DVD will have several videos on them.
    Is Adobe Premiere able to do this...? If so which version would suit me best? It's simply to do the above with no editing, just re-sizing for the web and saving as an MPEG4 file.
    Thank you for your help and time in advance.
    philip

    For web video creation, I use a program called V2F. It creates Flash rather than mp4, but if you're not stuck on that format, the files are very good quality.

  • Should I deinterlase my movie before compressing to a h264 file for the web

    Hi I have a movie in fcp that I want to compress for the web. I am going to compress it to a h264 file using quicktime. I was wondering if I should deinterlace the movie before compressing it
    thanks sam

    I have done it both ways and on computer monitors at least its always been my experience that DEINTERLACING the video looks better. Quite a bit better.
    Now there are 2 main ways to do it. And I've gotten similar results both ways. You can deinterlace from within Final Cut Pro which works fine or you can set Compressor to Deinterlace. Now I've read articles on why one is better than the next, but at least with Final Cut Pro 5.1.4 in the videos I've worked on I can't tell the difference. It looks good both ways.
    Hope that helps-

  • Disappearing color profile when saved for the Web

    Hello.
    I have a problem with the “Save for the Web” results using Photoshop CS6 running on Win 7 x64.
    My photos are already in 8 bits and in sRGB and when I save for the Web I check the option “embed color profile”, uncheck “convert to sRGB”, metadata to “copyright and contact info”.
    When I open the resulting photos in Photoshop, everything is fine as it recognizes the embedded color profile. Same thing when I open these files in Firefox, Safari or Chrome: the colors are correct.
    Now, when I right-click on a file in the Win Explorer and look its properties, the line about the color profile is blank, as if there wasn't any. This doesn't bother me but the problem appears on my Website created with Joomla and using for the display a module, Responsive Image Gallery, which creates resized copies of the photos. At this point the copies have completely lost their color profile. I entered in contact with the module's support and they assured me that it preserves the embedded profile, so I come here to gather some information about how this “Save for the Web” embeds the color profile because may be I just didn't understand how it does and if it's different from the “Save as” way.
    The fact I can't see the profile through the Win Explorer makes me think Joomla's module doesn't either.

    Incredible how much gballard's site is famous! Lol. I use it for a while now and checked again right now with the three Web browsers and everything is all right.
    As indicated in my first post, when saving for the Web I checked the “embed color profile” option. I already resized the file and converted it in sRGB first in Photoshop.
    Yes it's pretty confusing to see some software not able to see the color profile when the file is saved with that option.
    To illustrate, here are three screenshots from Windows' file browser => right-ckick on the file => properties => details:
    Opening that “saved for the Web” file in PS, it's ok, the CP is recognized.
    Opening it directly (from the file browser => “open with”) in Web browsers: ok in Firefox, Safari and Chrome (CP recognized in all).
    Copying that file in my working site on localhost (no modification), integer it in Joomla's module gallery (which is CP aware) and then opening my site on localhost with Web browsers: ok in Firefox (because it considers a non-tagged file by default as beeing sRGB), NOT OK in Safari neither in Chrome.
    Now, if I do the same with the “Save as” version of the file with embedded sRGB CP:
    PS: ok
    Opened directly in Web browsers: ok in the three cases
    Opened in Web browsers through my Joomla site on localhost: OK IN ALL THREE BROWSERS
    Good point gator_soup: I'll post a bug report. I'm new here on the forum and thought Adobe's staff would post here.

  • How do I change the dpi setting when I am saving for the web?

    I need to chnge the dpi setting from the default of 72 to 300 when saving for the web.  How do I do that?

    You go by pixel dimensions for the web because that's all that computer screens use.
    dpi or rather ppi is a print specification.
    In this example, Image > Image Size    I have unchecked resampling and set the ppi to 300. You can see how small it's going to print on paper as opposed to maybe 100 ppi.  It will still retain the same pixel dimensions.
    You basically focus on a good pixel size for the the browser display.

  • Putting movies on the web for download - help and advice needed

    Hello everybody,
    I'm not sure whether this is the right place for this question, but here's hoping...
    I've produced an hour long DVD on the history of my car club. I have produced the DVD using iMovie and iDVD, and it's fine.
    We will be having a number of these DVDs produced, but we also want to offer the movie as a download on our website. Of course this needs to be compressed, but what I want to be able to do is offer the user a file that will burn them a DVD with chapter markers etc, just like the DVD I have, in one operation - a straightforward duplicate. I also want to be able to let them download a label and jewel case insert and offer a complete package.
    Is an easy duplicate like this possible, and what sort of file size would the compressed item be? As the DVD is close to capacity, I assume the original will be around 4.7 Gb. There are also some jpegs on the DVD as extras.
    Certainly, it would be desirable for the user to play it on their computer, but the main aim is to get a disc TV ready (in the PAL format).
    I know you can download movies from the web, and I've downloaded trailers onto my iPod and played them back on a 32" TV and they're excellent. What I don't know is what software will do this. Can anybody point me in the right direction?

    Steve,
    what I want to be able to do is offer the user a file that will burn them a DVD with chapter markers etc, just like the DVD I have, in one operation - a straightforward duplicate.
    I suppose you could put up a 4 something gigabyte DVD disk image up somewhere on the web, but I wouldn't want to try and download it! Do you have a site available with this kind of storage and download bandwidth?
    Normally, the things I've seen on the web are reduced in image size to something like 320x240 - this reduces the file size to 1/4 the full size file.
    For Apple users, H.264 gives a pretty compact file with decent quality, but I'm not sure many PC users would be able to use it. In any event, people couldn't make a DVD with chapters without extra work.
    You could get QuickTime Pro and try converting the movie (or a part of it anyway) to H.264 (or 'regular' mpg-4) see how it looks.
    F Shippey

  • Creating a Simple Slideshow w music as a movie for a web page.

    Hi all,
    I would like to create a simple slideshow with music saved as a mp4 movie for a web page. I'd like to use basic transitions like crossfades between the pictures and other fun stuff
    A few questions:
    1 - Would I be better of  creating this in iPhoto or iMovie or Keynote?
    2 - Any hints in getting started?
    note: I guess I'll post this on iPhoto area also...

    You are probably better off in iMovie. You will have a lot more control. With iPhoto, as far as I know, all slides would have to be the same length, and you would need to pick music from iPhoto. With iMovie, you can customize slide length, make them change on the beat, use your own music, etc.
    I would use Keynote only if you want to include text and bullets where the photo is only part of the slide.

  • HD video compressed for the web

    I was doing some testing trying to figure out the best way to compress the HD video I get from the Sony XDCAM HD for the web (streaming). I shoot in HD (1080/30P) because it's needed for our videos. The web streaming is secondary.
    I would prefer to make the web videos .flv because it works best and most easily cross-platform. In the real world, the majority of users have Windows PCs, which made me hesitant to use h.264 (.m4v) because it probably would require the average user to download things they may not wan to. Nonetheless, it has to be viewable on all computers in all browers.
    So, I took three 10 second clips of steady camera video with audio from the camera that I used in all tests. I will refer to them by clip number...
    Clip 1: 30P 16:9 High quality, 10sec=45mb
    Clip 2: 30P 16:9 Low Quality, 10sec=24mb
    Clip 3: 60i 16:9 High Quality, 10sec=45mb
    First I tested making FLV is Adobe CS3 Encoder using the High Quality (700) setting.
    Test 1 used size 848x480 (16:9)
    Clip 1: 1.3mb
    Clip 2: 1.1mb
    Clip 3: 1.2mb
    Comments: Looked very crisp, audio was clean, slightly darker image than original on default settings
    Test 2 used size 480x270 (16:9)
    Clip 1: 1.2mb
    Clip 2: 1.1mb
    Clip 3: 1.1mb
    Comments: Looked very crisp, audio was clean, slightly darker image than original on default settings
    Next, I tested making .m4v using the h.264 iPod settings in Compressor.
    Test 1 used size 640x370.
    Clip 1: 240kb
    Clip 2: 1440kb
    Clip 3: 204kb
    Comments: Image wasn't quite as clean as the Flash files, but still good. Much lighter/brighter than the Flash files also. Low Quality HD video had high file size... why? I don't know, but I don't shoot on LQ for things anyway.
    Test 2 used size 320x180.
    Clip 1: 160kb
    Clip 2: 865kb
    Clip 3: 865kb
    Comments: Image wasn't quite as clean as the Flash files, but still good. Much lighter/brighter than the Flash files also. Low Quality HD video had high file size... also the 60i file...why? I don't know.
    In conclusion, I'm lucky that I shoot 30P since it worked well in all areas. The h264 codec provides a much smaller file size than Flash, with a good image. Amazing considering we started with a 45MB clip. What are the standards for aspect ratios for putting 16:9 video on the web? I haven't heard much set in stone like you have for 4:3 video. Nonetheless, the 640x360 or 480x270 seem to be a nice size for most uses.
    I have heard that in Flash 9 you can chance the m4v extension to flv and it will work. IF that is true, that would be great because now my concern is that a base Windows PC cannot play these .m4v images without plugins/codecs. I suppose right now its a tradeoff between smaller file size/less compatibility with h264 or larger file size, great compatibility with Flash.
    Any comments or suggestions to help out would be great. I typed this fast so forgive me if I left out any important info.

    Hi APPLE27:
    One comment from your post that immediately caught my attention was this, "Nonetheless, it has to be viewable on all computers in all browsers."
    Unfortunately, it is unrealistic to expect one digital video file to be viewable on "all computers in all browsers" as there are simply too may variations in both hardware and software.
    A common approach when offering digital video is to provide two formats to choose from and then within each of those two formats a few versions of the video for different bandwidths.
    For example, a web site might offer Video for Windows and QuickTime. For each of these, there would be a low bandwidth Video for Windows file and QuickTime file and a high bandwidth Video for Windows file and QuickTime file (four files total). Of course, there's also Flash Video, Real Video, MPEG1, and so on.
    For better or worse, YouTube.com has allowed video content creators the realistic expectation of creating a digital video file that is viewable on "most computers". But, the video is unavoidably tied to that web site.
    When it comes to online distribution of video, it's still very open ended.
    Also, computers are not all that's out there. Mobile devices are a huge market and you'd be hard pressed to create a single digital video file that will play on all mobile devices (iPhone, iPod Touch, Palm Treo, Sony PSP, etc.) either from local storage or from a mobile browser.
    QuickTime offers a solution for creating a referencing movie - one file that links to other digital video files, but it too is imperfect at best when it comes to reaching the broadest audience possible.
    With my few comments here, I'm just scratching the surface. But, it all starts where you are right now: caring about the image quality when exporting from your edited master.
    -Warren

  • Exporting FCP 16:9 to QT for the web in 16:9?

    Hello everyone,
    I recently began doing my projects in 16:9 mode. I shoot them with my GL2's in 16:9, then capture to FCP as usual. FCP then automatically recognizes the 16:9 footage and adjusts everything perfectly for me. I figured out how to get the footage to DVDSP by 'forcing letterbox'. This plays the true 16:9 footage on a widescreen TV perfectly.
    Now, I've come to another bridge that I can't seem to cross... that is... exporting the video to QT for the web in 16:9. I did a lot of searching here and all of the topics related to this did not help me at all. So, what I'm going to do is explain what I used to do when I shot in 4:3 mode:
    1. In FCP... File>Export>QT Conversion
    2. Format: QT Movie> Options
    3. Settings> Sorenson Video 3
    4. Frame Rate>15
    5. Key Frames: Every 150 frames
    6. Compressor> Medium
    7. Data Rate: Automatic
    8. OK
    9. Sound>Settings>Mpeg-4 Audio, 16bit, Stereo
    10. OK
    11. Prepare for Internet Streaming> Fast Start
    12. OK
    13. SAVE
    This usually turns a full sized 5 minute clip into a nice little presentation for the web no larger than 35 or so MB's. You can see a boat load of files like that on my website at (www.buerhausdesign.com).
    Now, what I want to do is get a similar sized video for the web, only in 16:9 as I'm now shooting and editing in 16:9.
    Does anyone have step-by-step instructions on how to do this? I know it's possible as I see movie trailors in 16:9 all the time in QT.
    Any help would be appreciated:)
    Matt

    Nope, tried all of that. It stretches the image way beyond 16:9. Currently, if I export as a 4:3 file, the widescreen displays correctly, but I get two black bars at the top and bottom of the frame. Manually sizing to a 16:9 size, to say 720x404, stretches everything... including the unwanted black bars.
    When I export to DVDSP, the black bars go away when I 'force letterbox'. There's gotta be a way to get it to work in QT.

Maybe you are looking for