Cropping out the letterbox bars for Web export

All,
I have mini DV footage that was shot in letterbox mode. The actual image is 16x9, but the full frame size is 720x480. There are black letterbox bars on top and bottom.
I would like to export the file for web streaming, but I would like for just the image to be exported, not the black bars. How do I do this?
Thank you,
Adam

is this a click and drag thing? or is there a specific frame size # that I need to know?
thank you so much for the quick reply
Adam

Similar Messages

  • FCPX Crops out the edges of video when exported!!

    In the program it looks perfect, but the exported files always have a significant portion of the edges chopped off...
    I have tried exporting under various settings and the same problem arises.
    Why does it do this? How can I fix it?
    Any help would be much appreciated.

    Here is a screenshot of the original footage:
    The exported file is just cropped, and I'd like to have the items near the edge in view...
    The project is 720p HD (1280x720) 30p, around 13 minutes long...
    I am exporting by going under File, Share, using these properties in the export window:
    I also tried with H.264 Faster Encode but that did not change anything crop-wise.
    I don't get it. I have exported other videos without this problem under the same settings, I believe.
    Thanks.

  • Save for Web Export

    I am trying to use the save for web export option to save out a file of type JPEG.
    I have gotten the code working fine if it saved out with the default file type of .gif, but I cannot get it to work with .jpg.
    set theExportOptions to {class:save for web export options, interlaced:true, quality:30}
    tell current document
    export in (theLocation as text) as save for web with options theExportOptions
    end tell
    These are the pertinent lines from my code, so if anybody can tell me how to save the file as type JPEG so that it is a scripted version of Photoshop's save for web feature, that would great.
    I am also using Photoshop CS2 v9.02 if that helps.

    You would have to code that seperate eg:
    FitImage(1000,500);
    function FitImage( inWidth, inHeight ) {
       if ( inWidth == undefined || inHeight == undefined ) {
          alert( "FitImage requires both Width & Height!");
          return 100;
       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 );

  • Alternative to Save for Web/Export as CSS Layers?

    I'm am SO DEVASTATED that CS6 got rid of the option to save as CSS layers in Save for Web.  I just updated from 5 to 6 and now I'm looking for an alternative but am having no luck.  I've tried some scripts I've found online but none of them work the way I need, or at all. 
    I do animation in AI where each layer is a frame on the animation.  In CS5 I could Save for Web and check the Export as CSS Layers box.  This would export all the layers in my AI file to pngs, where each layer is it's own png file, in one folder.  I could then import them as an image sequence in Photoshop and turn layers on and off with each frame to create my animation.
    I tried exporting my AI file to a PSD file with maximum editability but the more complicated the animation (meaning the more layers and the more objects on each layer) it would start flattening layers without warning.  Not to mention the rendering time just opening the file in Photoshop and then trying to save it there once I had created all my frames.  Photoshop froze on me 6 times this morning while I was trying things out.
    I'm desperate for a simple way to do the CSS layer trick.  If I can't find one, I'm going to have to go back to CS5 permanently, or until I can find a solution.

    here you go, let me know if it cuts it.
    #target Illustrator
    //  script.name = exportLayersAsCSS_PNGs.jsx;
    //  script.description = mimics the Save for Web, export images as CSS Layers (images only);
    //  script.requirements = an open document; tested with CS5 on Windows.
    //  script.parent = carlos canto // 05/24/13; All rights reseved
    //  script.elegant = false;
    * export layers as PNG
    * @author Niels Bosma
    // Adapted to export images as CSS Layers by CarlosCanto
    if (app.documents.length>0) {
        main();
    else alert('Cancelled by user');
    function main() {
        var document = app.activeDocument;
        var afile = document.fullName;
        var filename = afile.name.split('.')[0];
        var folder = afile.parent.selectDlg("Export as CSS Layers (images only)...");
        if(folder != null)
            var activeABidx = document.artboards.getActiveArtboardIndex();
            var activeAB = document.artboards[activeABidx]; // get active AB       
            var abBounds = activeAB.artboardRect;// left, top, right, bottom
            showAllLayers();
            var docBounds = document.visibleBounds;
            activeAB.artboardRect = docBounds;
            var options = new ExportOptionsPNG24();
            options.antiAliasing = true;
            options.transparency = true;
            options.artBoardClipping = true;
            var n = document.layers.length;
            hideAllLayers ();
            for(var i=0; i<n; ++i)
                //hideAllLayers();
                var layer = document.layers[i];
                layer.visible = true;
                var file = new File(folder.fsName + '/' +filename+ '-' + i+".png");
                document.exportFile(file,ExportType.PNG24,options);
                layer.visible = false;
            showAllLayers();
            activeAB.artboardRect = abBounds;
        function hideAllLayers()
            forEach(document.layers, function(layer) {
                layer.visible = false;
        function showAllLayers()
            forEach(document.layers, function(layer) {
                layer.visible = true;
        function forEach(collection, fn)
            var n = collection.length;
            for(var i=0; i<n; ++i)
                fn(collection[i]);

  • How can I make the stage height shorter by "cropping out" the bottom portion of the stage?

    Right now my stage dimensions are 980 X 800 px.  I need to cut or "crop out" the bottom portion of the footer because its height is too long.  So I changed the stage dimensions to 980 X 600 px (and changed the corresponding dimensions in the embed tag in the index.html file to match).  Doing this seems to cut out the bottom but at the same time adds space to the top and seems to distort the overall spacing.  Is there a simple way to crop out the bottom of the stage (just like cropping out a section of a photo)?

    Forgetting about the html file and embed tag for now, I can't seem to get the .swf proportioned properly in the first place.  I just want the bottom portion of the stage cropped out.  How do I do that without distorting the spacing?  When I tried to reduce the stage height, it doesn't simply crop out the bottom - it reduces the stage's height but it also seems to add space to the top and "squeezes" lines together, distorting the vertical spacing.
    Is there a way to simply crop out the bottom, just like cropping an image?

  • Save for web export crashing photoshop

    HI
    In was wondering if anyone could help me.  I have written a code that edits images but i am having trouble with the save for web export everytime it gets to saving it photoshop just crashes. I have tried a few different ways of coding it but all of them end of crashing PS and i am at a loss as to what is wrong.
    Here is the code that i am using:
                                            set webFolder to (choose folder with prompt "Select the folder to link to")
                                            set webOpt to {class:save for web export options, web format:JPEG, quality:89}
                                            set theDoc to current document
      export theDoc in webFolder as save for web with options webOpt
    any help would be great. I have tried it on CS6 and CC, both of which crash.

    You need to pass a full file path to the export command… Probably need to change the extension too.
    set myFullFilePath to (path to desktop as text) & docName
    export in file myFullFilePath as save for web with options myOptions

  • The scroll bar for Firefox cannot be controlled by the mouse, the only way I can scroll is with the arrow keys, help!!

    I have a brand new Dell Alienware laptop running Windows 7 and I just installed the latest Firefox browser. My problem is that the scroll bar for the browser does not work when using the mouse... the mouse cannot control the scroll bar either by clicking the up or down arrow or by dragging the bar with the mouse. The only way for me to scroll using Firefox is to use the arrow keys on my keyboard.

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

  • When I add pictures into MUSE , do the pictures resize for web quality (And so the page loads fast enough) or do I have to do this using an external software like photoshop, etc. ? Thank You

    When I add pictures into MUSE , do the pictures resize for web quality (And so the page loads fast enough) or do I have to do this using an external software like photoshop, etc. ?
    Also is there any way I can change the contact form email for all of my contact forms at once.
    I have over 100 contact forms and i want to make them reach the same email anyway I can do that without going one by one?

    If you have placed the image in Muse using File > Place and then scaled the image down in Muse while editing, then Muse publishes/exports the scaled down/optimized image in final output. When using as a Fill, the output size depends on the Fitting option you setup in the Fill options.
    As for the contact form email, you would need to specify the email address for each form individually. There is no workflow to edit the same for multiple forms at a time.
    Cheers,
    Vikas

  • My safari menu bar is missing --the menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away.  Any ideas how to retrieve it?

    My safari menu bar is missing.  The menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away when borrowing my computer.  Any ideas how to retrieve it?  Thanks. 

    I too was having the same problem However, I could access both the menu bar and the dock by hovering my mouse over them so it wasn't a huge problem but I prefered having it there anyway. I was not in full screen mode and I could still go into full screen mode if I wanted to.  I found the easiest solution was to just quit safai and restart it, but it might not work for you considering you couldn't access you menu bar either way.
    I found this article that allows you to hide/show the menu bar and the dock through TextEdit (didn't work for me) http://www.mactricksandtips.com/2009/07/hide-the-menubar-or-dock-in-specific-app s.html It is pretty old so it might not work for lion and a bit risky if you don't know what you're doing so I wouldn't really recommend doing it this way.
    And KSheppard, I know it's not really any of my buisness, but the way to get answers to a question isn't by insulting others and being quick-tempered. Even if you feel like you were insulted first, don't try snapping at people who aren't obligated to help you. Honestly, it just makes everything easier if everybody is cooperative and polite.

  • Why won't Apple give out the unlock code for an iPhone 3Gs when the contract was honored and I am still an AT

    Why won't Apple give out the unlock code for an iPhone 3Gs when the 2  year contract was honored and I continued to be an AT&T customer with an iPhone 4. I wanted my old 3gs unlocked so my daughter could use it overseas when she is deployed. AT&T service over there *****, the international plan was not worth it. The individual SIM cards per country are much more reliable and cheaper. Teslestial in Iraq and Afghanistan, Telecom in Croatia,Vodafphone in Germany and Italy.  Why Apple will not unlock these phones for our military to utilize is incomprehensible to me.  These young men and women are fighting for these Apple people to go to work every day, safe, to live lives they have become accustom to yet releasing a phone to use on another network they can't do at least for the military.... WHY APPLE??  WHY?   A good excuse not some of the many lame excuses I have received on the phone many times. AT&T states it is Apple that will not allow them to unlock the phones...  Please tell me why?  All I want Is my daughter to have a phone I trust, to be able to call me when she is given the free time to do so and I trust the apple phone.
    Apple, please reconsider your stance on this issue.  I am having a hard time understanding why you will not unlock the iPhone. 
    A simple code could allow me to talk to my daughter while fighting for our country the Great USA.  Apple should be on the front line and enabling those fighting for our life, liberty and pursuit of happiness to use unlocked phones on reliable local GSM networks.
    I honestly hope that someone who has some sort of authority to begin allowing the release of unlock codes, and not forcing people to unlock their phones with some program produced by some hack just to be able to use your wonderful phone.  That is is in a nutshell, People love the iPhone so much that they want the ability to use it on the most reliable GSM carrier available to them.  That should be a major compliment. Even men and women on the front line want your phone. I agree, my service is not the best where I live either, love the GSM technology so stay with it, but if I had the ability to change to the other GSM network that has much better coverage in this area of the country I would change. To change now I would not have my iPhone and that I will not part with. 
    Apple, please reconsider opening up the lock code and allow your gem of a phone to be used by many more people in many more areas and most importantly overseas fighting for our country.  I know if this is really thought about Apple would understand and come to the conclusion to release the unlock codes, and stop the people from hacking in to use the iPhone on other networks.
    I would love for my daughter to be able to use my iPhone 3gs while fighting for our Free country.
    A response would be appreciated.
    Thank you.
    An Apple customer for 10 years, phones and computers.
    P

    Defiled:
    I did sign a two year contract and completed that contract. The 3gs is no longer in service. My daughter is going overseas to protect you and your family. I was attempting to find a way for her to have a reliable phone that could offer her some connection with home as she travels through the middle east.  She travels in missions all over.
    At&T unlocks other phones of theirs why not the iPhone?  AT&T says that Apple will not give them the code, it is not the carrier.  If I would have known this situation would have come up I would have bought and unlocked 3gs phone"Deggie" .  My main complaint is that Apple has not good excuse as to why they will not allow their phones to be unlocked from services well, AT&T .  I bought the phone full price, completed the contract terms, even went for and iPhone 4 with another2 year contract, along with owning an apple computer... I love the product.  My main issue is give me a good answer as to why you won't allow a phone to be unlocked. It doesn't hurt Apple, People still have to buy the phones from them, and use their App store and iTunes.
    Sorry, just upset about my daughter heading over there, boots on the ground, and just pray she will be safe. Would have liked to facetime her while she is in the airports and in specific areas allowed for that.
    Please don't come down on me for asking this question. I understand all the contracts etc.... but to single out the iPhone specifically to not unlock after contract is over does not seem fair.
    Thank you for your responses.

  • How do i fix my printer when it won't show the print preview for web pages? it worked and now not.

    how do i fix my printer when it won't show the print preview for web pages?  it worked for a while and now it doesn't.  printer is an hp officejet 7310 all-in-one.

    I would suspect this is a hardware issue.  The rollers are probably having issues picking up the relatively smooth thick media.  You might have better results be cleaning the paper pickup rollers with a damp paper towel.  Also make sure the paper is snugly loaded and the paper guides have been correctly positioned.
    Regards,
    Bob Headrick, MS MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How do I find out the base dir for the current workspace ? Change?

    Assume I took over a colleagues JDeveloper installation.
    How can I find out the base dir for his JDevelopers workspace?
    Can I change this workspace base dir afterwards/later (without
    problems for the included sources and projects) ?
    Where can I change it ?
    I did not found an option in the settings?

    If you hover your mouse over the workspace you'll see the directory where the jws file is stored.
    For each project in the workspace you can go to the project properties and look up information in the content node of the preference - there you can also change the location preferences for where code is created.

  • How to find out the printer name for the Idoc

    Hi guys
    I want to find out the printer name for the Idoc,,some default printer is attached for one idoc,then how can we see the printer name for this idoc.
    Regards
    Madhoo

    Hi,
    For ALE/IDOC the  medium will be either ALE or EDI but not printer.So it might be wrongly attached.As such there won't be any printer attached to idoc.
    Regards,
    Nagaraj

  • Always scrolling back to the search bar for pdf files in ibooks. Is there a way to fix this?

    ALWAYS scrolling back up to the search bar for pdf files in ibooks. Is there a way to fix this?

    Care to share your fix with the rest of the community in case anyone else has the same problem or since you found the solution are you off to never be heard from again?

  • Does anyone know how well the Intel Iris Pro installed on new 15" MacBook Pros performs using Photoshop and Lightroom. I have seen some differing opinions out there, and I would rather not shell out the extra cash for the Nvidia if I don't have to. I most

    Does anyone know how well the Intel Iris Pro installed on new 15" MacBook Pros performs using Photoshop and Lightroom?  I have seen some differing opinions out there, and I would rather not shell out the extra cash for the Nvidia if I don't have to. I mostly do photo editing for business and personal use. I have not used the 3D function in Photoshop, but I would like to know that I could.

    You could download a trial and see how well it works before committing to a subscription. You get 30 days to decide.
    Photo editor | Download free Adobe Photoshop CC trial
    Photo editor app | Download free Adobe Photoshop Lightroom 5 trial
    Gene

Maybe you are looking for

  • File name mystery - works in BeanShell - but not in plain java

    I have added a step in a KM with the following: <% import java.io.*; try FileWriter tempFile = new FileWriter("newSourceTableList_"+odiRef.getSession("SESS_NO")+".txt"); tempFile.write(newSourceTableList); tempFile.close(); catch (Exception e) out.pr

  • Problem with the round

    I have a pb of round when I sum 2 doubles ,how can I correct that? for example in my program : 6.1+3.2=9.3000000001 thanks

  • Sort key '011' (site number) without value update in FI document

    Hi With regards to vendor master already with sort key 011(site number) was maintained. However, there is always no values update on assignment field in the accounting document. The accounting document was integrated thru MM module when logistic invo

  • E mail choice settings

    Just installed my PSE9 on windows 8 - trying to use share photos with E mail program. I've installed windows live mail but the settings menu under preferences does not give me the choice to use it? Only windows mail. Choosing that setting doesn't wor

  • English - english dictionary doesn't work

    I have Firefox 32 and Windows 7. My add-ons manager says that English - English Dictionary 1.5 is installed, but it isn't working. There's no "ABC" icon and clicking a word does nothing. What am I doing wrong?