How to remove black bars after image rotation

I am very new to using premiere pro. I took a video with my smartphone as the content for a project.  The original dimentions was 1280 wide and 720high.  I imported the video and needed to rotate it 90 degrees.   Instead of wide, I need it tall. I imported and then went under effects control - motion - rotation to rotate how I wanted.
But now on the screen has black bars on the sides since rotating it, and when I export the basic video settings is greyed out, so I can't change it. It is set/fixed at 1280 x 720 with the black bars.
How can I remove the side black bars in premiere pro to fit the dimensions of the newly rotated video?

You need to create a new sequence with the settings at 720X1280 and put your video on that sequence. It requires you to use the custom settings so make sure everything matches.
To export it after you edit it, choose a 720p format and unlock the Width and Height so you can manually set the image to 720X1280.  That should work for you.
To make sure I wasn't steering you wrong, I just shot a vertical video, imported it into a 720X1280 custom sequence, put a title on it and exported it using an Android preset, unlocked the settings and swapped the width and the height. I then emailed it to my phone and played it. Worked great.  It also plays OK in Windows Media Player. It is funny to see it that way on a PC, but I can think of a few reasons that I might be inclined to shoot that way. Specifically if I was going to play it on a portrait oriented display.

Similar Messages

  • Flash CC optimizing for iphone 5: How to remove black bars

    iOS test app i created in Flash CC is installed and functioning fine on my iPhone 5.
    However, the app is optimized for the 640x960 screen and not the 640x1136 iPhone 5 sceen.
    I'm only testing on the device, not uploading to the app store.
    Can someone please point me in the direction of the correct code to optimze for iPhone 5 for device testing only?
    THX!

    This is really a loaded question. There's no simple answer and multiple strategies.
    One strategy is the bleeding edge method. In that, you set the stage to scale NO_BORDER and exceed the stage in all directions with your artwork. That way it scales in aspect ratio to the device size but the images that bleed outside the edges of the stage will fill the black bar area. You then focus all your controls towards a designated 'safe area' for the device and assume the extra space may or may not be seen.
    The harder but better method is NO_SCALE where you program like an Android device. You program your app so it detects the devices resolution and position all elements based on the available area. That means everything is constantly calculated based on available space, so it's a ton of extra coding, but it puts you in a very good port position for Android.
    Bottom line, there is no magic bullet or Staples "Easy Button" to make your app work perfectly on all the (now) fragmented resolutions of iPhones/iPads.

  • Export to PDF slideshow - how to remove black bars?

    Hello,
      I'm using PE6.0 and need to output a PDF slideshow, which I have done successfully. HOWEVER, there are black bars on the sides when viewing the slideshow in fullscreen mode. I am assuming this is part of the way Acrobat displays its fullscreen mode. Does anyone know how to get the slideshow to actually display in real fullscreen mode? In other words, how to get it to not show the black bars? Thanks.

    The target size (1440x900) has the same aspect ratio (16:10) as my display, with which I am having the problem with the surrounding black space:
    I have experimented with this for some time now and cannot eliminate the black bars.  In my case they are actually added to the individual slides when the pdf slideshow is created.  Sorry, but I do not have a solution or workaround.
    Juergen

  • How to remove black border around image files?

    I'm something of a beginner with Photoshop, so forgive me if I've missed something entirely obvious: for some strange reason I'm now getting a black border around all image files that I save through the "Save for Web & Devices" panel. Does anyone know how I can save without creating this border? It looks rather unsightly when I load it into a client site. The file in question is a .png, but I seem to be getting the same effect with all other image files as well.
    Thanks in advance,
    Shane

    One cause could be having the matte color set to something other than none.
    Is that a png-8?
    MTSTUNER

  • How to remove black "blocked plug-in" window that opens with iPhoto. It covers iPhoto and everything under it. I've right and left clicked the black window, restarting the computer, shutting down the computer, but the window always appears when I ope

    How to remove black "blocked plug-in" window that opens with iPhoto. It covers iPhoto and everything under it. I've right and left clicked the black window, restarting the computer, shutting down the computer, but the window always appears when I open iPhoto and it will not move or go away. It stays on my screen (covering my desktop icons) even after I quit iPhoto. How can I get it off my screen?

    Which version if iPhoto and MacOS X do you have?
    Do you have any iPhoto plug-ins  installed?
    Open the folder /Library/Application Support/iPhoto/Plugins/
    To navigate to that folder, open the folder "Library" directly on your Macintosh HD, then inside the Library folder go to Application Support, then iPhoto.  Is there anything installed?

  • How to remove black "blocked plug-in" window that opens with iPhoto and covers everything under it?

    How to remove black "blocked plug-in" window that opens with iPhoto. It covers iPhoto and everything under it. I've right and left clicked the black window, restarting the computer, shutting down the computer, but the window always appears when I open iPhoto and it will not move or go away. It stays on my screen (covering my desktop icons) even after I quit iPhoto. How can I get it off my screen?

    Which version if iPhoto and MacOS X do you have?
    Do you have any iPhoto plug-ins  installed?
    Open the folder /Library/Application Support/iPhoto/Plugins/
    To navigate to that folder, open the folder "Library" directly on your Macintosh HD, then inside the Library folder go to Application Support, then iPhoto.  Is there anything installed?

  • Problems after image rotating!

    Hi all!
    I'm having problems with image rotating..well actually drawing after image rotating.
    After I've rotate an image and have painted it, I'll have to paint another image. Problem is that the second image suppose to be painted normally, but now it rotates too. Please help me.
    example:
    Graphics2D g2 = (Graphics2D)g;
    fHeight = INumb.getHeight(this)/2;
    fWidth = INumb.getWidth(this)/2;
    g2.translate(x, y);
    g2.rotate(Math.toRadians(dAngle),fWidth,fHeight);
    g2.translate(-x, -y);
    g2.drawImage(INumb,x,y,this);
    /*now this next image is suppose to be painted normally, but now it just spinns around (I've got thread in this program*/
    g.drawImage(IScreen,0,0,this);
    how do I fix this problem?
    Thanks advance

    Thanks again, but I still have a problem. here is a code:
    IScreen = createImage(getSize().width, getSize().height);
    BGroundWin = IScreen.getGraphics();
    public void paint(Graphics g)
    //first I'm drawing all kinds of stuff to the BGroundWin
    BGroundWin.drawString(.....);
    //and now I'll have to paint this INumb image, wich is spinning around
    Graphics2D g2 = (Graphics2D)g;
    fHeight = INumb.getHeight(this)/2;
    fWidth = INumb.getWidth(this)/2;
    g2.translate(x, y);
    g2.rotate(Math.toRadians(dAngle),fWidth,fHeight);
    g2.translate(-x, -y);
    //drawing this spinning Image to the BGroundWin
    BGroundWin.drawImage(INumb,x,y,this);
    /*now I'm drawing the whole screen,but WHAT DO I HAVE TO DO TO AVOID OTHER PARTS ROTATING(only INumb suppose to rotate*/
    g.drawImage(IScreen,0,0,this);
    I've tryed many differend ways, but for some reason(too dumb I guess) I can't make it work. If I don't draw rotated image to the BGroundWin screen flashes. if draw it there everything rotates.
    If you could help me, I would be very thankful.

  • Remove black bars from social videos on Muse

    Hi,
    How can I embed videos from youtube/vimeo without having black bars appear above and below them? See screenshot...

    This happens due to aspect ratio of video , you can try these options :
    http://stackoverflow.com/questions/19794000/removing-black-borders-on-a-vimeo-iframe-embed -using-css
    http://www.reelseo.com/remove-black-bars-youtube/
    http://wistia.com/blog/remove-black-bars-from-online-video
    http://stackoverflow.com/questions/26617154/responsive-fullscreen-youtube-video-with-no-bl ack-bars
    Thanks,
    Sanjit

  • How to remove antialiasing of vector images?

    Hello. Currently, I am editing bitmap images that are not antialiased, and I made lots of vector shape layers.
    And what I want to do is remove antialiasing of all vector layers  because if they are antialiased, they can not  fit into forementioned non-antialiased bitmap  images.
    I found an option to display aliasing vector images, I mean "Layer image quality" option in time line panel, and I set it  "draft", but if I render my sequence, AE won't allow  me to render the draft, aliasing vector image. They are antialiased. AE ignores the draft setting and renders vector layers as best quality, antialiased image.
    So I want to ask how to remove  antialiasing of vector image completely.
    Please help me. Thank you.

    I found the option.Thank you.
    And I want to ask one more question.
    I guess If I set render settings as Draft quality, AE renders all layers including "Best Quality" layers as Draft quality.If so,there is a problem.
    If I want to render "A" bitmap layer(this layer has effects like Fast blur, Hue/Saturation) as Best quality and "B" vector layer(No effect) as Draft quality, and  If I render A and B layers as Draft quality, it means I can't render "A" layer as Best quality? If so, it will be a problem. I read a manual and it says some effects won't work correctly on Draft quality layers. Is it alright to render them all  as Draft quality?

  • After Effects, wierd black bars after rendering.. please help

    As soon as im done rendering with After Effects, i get wierd *** glitches in my Videos, i get some kind of black bars after every effect, here are some examples > http://gyazo.com/d3a882684246f5863d0ff7cb4c9f580c , http://gyazo.com/056f2f5da531229a370256e9b0f8c9c0 Can anyone please help me with that? its just happening after i renderd everything... please help

    You haven't given us nearly enough information to help you.
    Screenshots or info about your composition settings and screenshots or info about your render settings and output module, for example.
    Screenshot of your comp and workspace too.
    Also, all this: FAQ: What information should I provide?

  • How to remove black background?

    Hi,
    How to remove black and gray background found in the attachment(1 page). Thanks.

    You can't do it with Acrobat alone. You could if you had Pit Stop or something similar.
    If you have Illustrator you could probably open it and remove it there but you'd probably end up getting font substitution if you don't have the same fonts on you system.

  • How do I get CS4 Change Quality Presets to be used and remove black bars?

    In Encore CS4 I CAN change the quality preset to what I want, but then when I go back to the project it does not stick.  I tried to get to transcode settings, but they are greyed out.  There does not seem to be a way to "USE" the quality preset I have saved!
    This is a single video clip that I sent to Encore from Premier Pro CS4 so I could make DVD and BD's.  However it seems I am unable to make a DVD at 4 Mbps (so I can combine this Premier Pro Project with another on a single DVD) no matter what I try.  Also I notice the BD I made was not m2v like I am used to in CS3, and therefore are not sure I can combine it with a menu and another clip on a single BD as I have done numerous times in CS3 Encore.
    I also notice as I look at preview, and then also when a made a default setting DVD that there are black bars on either side of the picture.  This was a 1440X1080 60i project in Premier Pro CS3 and I am desireing to make ait a 1920 X 1080 DVD.
    Neither of these were problems in Premier Pro CS3 and I am thinking the way around this is to spend the day or two and redo the project in CS3.  I have done many projects successfully in CS3 and mistakenly thought I could just pick up the project in CS4 and be successful again.  If anyone knows how to resolve these in CS4, it would save this extra work, if not, I will join the crowd with CS4 "issues" and go back to CS3.

    First, on the black bars.  I do not want them at all.  I cannnot post a screenshot now as
    file attachments are turned off temporarily, but they are about 5% on either side.  Totally unacceptable especially when in CS3 when exported to Encore there are NO black bars either visible in Encore or in the resulting DVD's
    On the options and is the preset saved.  I can close Encore and open it afresh and find the preset that I saved listed in the dropdown of presets with the name I saved it as and all the settings the way I want them.
    On the issue of Transcode settings when selecting the resource...  When I select the resource in the Project panel, or in the Timeline tab, the Transcode settings is greyed out.  I have consulted the help screens and forums for various ways to change the transcode settings and none of the suggested ways work.
    It looks like my CS4 install does not work the way yours does.  I am about to completely unistall CS4 and CS3 and all other Adobe products and try a fresh reinstall to see if that works.  Most likely I will simply reinstall CS#, since that works, and abandon CS4 for now as I am getting way behind on my work, and know I can finish with CS3.  I have also heard form others that Sony Vegas is really solid and does not have all these weird bugs such as seen in CS4 and CS5, and is a much less bloated product and does the encodings faster.  Since it is also less expensive, this seems too good to be true, but work a trial.  So first rip every Adobe product off  my PC and format the HD and start fress with JUST CS3 and get my work done.  Then try Vegas to see if it is as good as my buddies say, if so bye bye Adobe!

  • Removing black bars down sides of clip?

    Hello
    I am editing a movie clip in Premier Elements 11. It's a 25fps file. I did not film the clip, but was told that it was a normal (not widescreen) PAL clip. The clip looks like this when I am editing it (screenshot).
    What concerns me are those two thick black bars down both sides of the clip. What causes them, please? Is it that the clip was really widescreen and I am editing it in normal mode and how best to remove them as I imagine they will be visible when the final product is show on a DVD or TV.
    Many thanks.
    Steve

    kissakikai
    In your other thread
    https://forums.adobe.com/thread/1705170
    I wrote
    For now my messages to you will have to be read only because of the reply issues.
    1.  Please go to your home computer (no mobile device). In the browser (Firefox or Internet Explorer), type in the Adobe address http://www.adobeforums.com, sign in there with your Adobe ID and Password. Go to the Adobe Premiere Elements Forum where you search for and find your thread. Open the thread and try to reply to one of my messages by clicking the Reply button. Do you now see the Reply button to do that whereas before you could not.
    2. Also, go to your browser's Options/Advanced/Network and its Cached Web content and clear the Cached Web content.
    3. If you need to use a mobile device for communicating with the forum, do you have another mobile device that you could try to use?
    After you send the reply, if it arrives with no message as before, that will tell us that the above were not the answer for that problem.
    As for the Premiere Elements 13.1 Update, we will move on that as soon as possible when you can report back on what worked or did not.
    Do not give up.
    You have just sent another reply without a message in it. So, I am concluding that none of the above has solved the posting problem. I meant for you to reply in
    your own thread, but that is OK because we are going to try for another communication route to workaround the posting in the thread problem.
    Let us try the troubleshooting using the Adobe Private Message system. Later when we resolve the problems, then we can write back in the forum thread
    to let everyone know the outcome.
    In post 8 of this thread, click on my ID AT Romano. That will open my profile page. Look to the right to find an orange envelope. Click on the orange envelop
    to open to an emailing area. For now, just try to send a quick message, like "I am here." If that works, we will continue with details back and forth until we
    gain success with all the problems.. If that does not work, then post again in this thread. Another blank reply here will tell me that you sent the email which I did not get.
    Thank you.
    ATR

  • Removing Black Bars on iMovie Projects (Aspect Ratio / Resolution Problem)

    Hey folks,
    I jusr recently recorded a video using fraps on my PC while playing World of Warcraft. I've transfered this over to my mac to import into iMovie and upon importing the file (using a DV Widescreen profile) there are two black bars on either side of the video.
    I believe this is because my monitor is using a different aspect ratio (max resolution is 1680x1050, in otherwords not 16:9 as the profile indicates).
    How can I configure iMovie to conform to the aspect ratio of the origional imported video? I know if I import the video and get it edited to the final version I want to encode, there is an option using the Divx codec to remove these bars - But i'd like to keep the video using the H.264/.Mov standards (Divx looks like crap IMO!)
    Any suggestions?
    Thanks!
    - Evan

    Hey folks,
    I jusr recently recorded a video using fraps on my PC while playing World of Warcraft. I've transfered this over to my mac to import into iMovie and upon importing the file (using a DV Widescreen profile) there are two black bars on either side of the video.
    I believe this is because my monitor is using a different aspect ratio (max resolution is 1680x1050, in otherwords not 16:9 as the profile indicates).
    How can I configure iMovie to conform to the aspect ratio of the origional imported video? I know if I import the video and get it edited to the final version I want to encode, there is an option using the Divx codec to remove these bars - But i'd like to keep the video using the H.264/.Mov standards (Divx looks like crap IMO!)
    Any suggestions?
    Thanks!
    - Evan

  • Remove Black Bars from Top and Bottom

    Here's my situation:
    I shot my footage FULL FRAME (not anamorphic) but while shooting my footage I had markers on my LCD for a 2.35 Aspect Ratio.
    Now that my footage is edited I dropped the FCP matte filter for 2.35
    For those of you out there I know I did not use a anamorphic lens and I know I did not shoot it on 16:9 format. But is there a way to crop out the Black bars?
    Again like the previous post I would like to remove the black bars and have my QUICKTIME MOV. play like the ones on APPLE's Trailer site: http://www.apple.com/trailers/
    Can anyone out there explain how to do this? Other then just drop this and change the size...WHAT DOES THAT MEAN? If you can provide more step by step information that would be great!

    1. Create a New Sequence in FCP (Command-N)
    2. Bring up your Sequence Settings (Comman-Zero) and alter them...
    2a. so that your Frame Size is (approx) 720x306
    2b. set Aspect Ratio to Custom.
    3. Drop in your widescreen-filtered footage (they'll be shrunk, so...)
    4. Select your clip (or all clips) (Command-A)
    5. Remove Attributes (Option-Command-V) and select 'Basic Motion' then click OK.
    6. Your movie should now (pretty much) fill the 2.35:1 sequence.
    You'll probably need to tweak the frame size slightly (It's been a while since I've done this so my number(s) might be off).
    Also, when you (ultimately) Export Via QuickTime Conversion (for the web?), be sure to take into account that the web uses Square Pixels - so resize your QT movie (in the Save Dialog, under Options) to be 640x306. (Again, my exact numbers might be off)
    Good luck.

Maybe you are looking for

  • Unable to open Form Repsonse File

    Hello, I am unable to open a response file to one of my distributed forms. I have made no changes to my system or the file. I get the following error "To view the Flash technology content in this pdf file, please install this version of Flash Player

  • Refreshig security from shared services

    let us assume that we are creating 5 users in shared services and provisioning them with different privileges. when refreshing these users security from shared services to essbase , i need to refresh the security of only one particular user role, how

  • |How to stop Photo Downloader

    Is there any simple way to stop this running (from PE 11) at boot up, please?

  • Update from Snow Leopard 10.6.8 to Mavericks?

    I can't install OS X Mavericks, it says something about that it can't be installed on the disk? "disk can not be used to boot up the computer." My MacBook Pro 13" is with an IntelCore i7 and the additional stuff. What should I do?

  • Win Key Combination in Remote App

    Hello. For some reasons i should run RDCMan (remote desktop connection manager) in remoteapp session. But I've got the situation that Win-Key combination are not being redirected to rdp session, because they are not being redirected to remote app ses