How do I flush the pillarboxes in my video without quality loss?

Hi all.

I use Adobe Premiere CS6 now edit a promo video I did, but I have the problem of black boxes all around the video. I tried to stretch to fit, but the quality has suffered considerably. I tried to crop to 16:9, but it's the same with quality. I agree with a bit of black stripes, but preferably I would like the video to fit the screen. I am trying to load on Youtube.

I shot the video with a Canon EOS Rebel T3, which has an aspect ratio of 3:2. It records up to 720 p. So basically, I just try to get rid of black borders while keeping quality 720 p video.

I tried to export in H.264, MPEG, MPEG-4, cropping, stretching, but something always gets cut or suffers from quality or both.

If you need more information, I will provide what I can, just ask. Thank you.

It seems that the sequence does not match the sequence, for example editing of images in a sequence HD SD will expose the problem you describe. Pictures 720 p is 1280 x 720? If so, and the sequence is 1080 p, which would also put black around the smaller video in the broader context. They must match.

If you drag a clip from the tray on the "New item" button next to the trash can, this will create a sequence corresponding to your images. The current order, Select All and copy, then paste in the new sequence, in this way, that you don't have to start with the edition.

Hope it gets you going

Thank you

Jeff Pulera

Safe Harbor computers

Tags: Premiere

Similar Questions

  • How to record 1920 x 1080 video without quality loss? Do not use blu ray.

    How to record 1920 x 1080 video without quality loss? Do not use blu ray.

    It is physically IMPOSSIBLE to use HD on a DVD material and to play in a DVD player... the data rate is different, it is BluRay invented

    Link to DVD Demystified FAQ http://forums.adobe.com/thread/544206

  • Resize the video without quality loss

    I am facing a problem of video resizing, could someone help me solve this problem.

    I would like to video scale to the size of the content available (size of degree) without distorting the quality like VLC player.

    Here is my code.

    The FLA code:

    import flash.display.StageScaleMode;

    import flash.display.StageAlign;

    import flash.events.Event;

    ////////////////////////////

    var videoMC: MovieClip = new MovieClip ();

    this.addChild (videoMC);

    var videoMgr:VideoManager = VideoManager.getInstance ();

    videoMgr.init ("sampleFile.flv");

    videoMC.addChild (videoMgr);

    // #############

    This tells Flash NOT allow assets globally

    stage.scaleMode = StageScaleMode.NO_SCALE;

    internship. Align = StageAlign.TOP_LEFT;

    need to create a listener to say object when the stage is resized.

    stage.addEventListener (Event.RESIZE, onStageResize);

    setBackground ();

    called when the stage is resized

    function onStageResize (evt: Event)

    {

    setBackground();

    }

    setBackground () function

    {

    determine the Middle

    var middleX = stage.stageWidth / 2;

    var middleY = stage.stageHeight / 2;

    Replace the bkgd in the Middle

    videoMC.x = 0;

    videoMC.y = 0;

    bottom of scale to fit the width and height

    videoMgr.updateVideoSize (stage.stageWidth, stage.stageHeight),

    see if it has grown like horizontally or vertically and adjust other

    to maintain the proportions

    videoMC.scaleX > videoMC.scaleY? videoMC.scaleY = videoMC.scaleX:videoMC.scaleX = videoMC.scaleY;

    }

    // #############

    ------------------------------------------------------------------------------------------ ------------

    AS3 class:

    package

    {

    import flash.display.Sprite;

    import flash.events.AsyncErrorEvent;

    import flash.events.NetStatusEvent;

    import flash.events.SecurityErrorEvent;

    import flash.events.StatusEvent;

    import flash.events.TimerEvent;

    import flash.media.SoundTransform;

    import flash.media.Video;

    import flash.net.NetConnection;

    to import flash.net.NetStream;

    import flash.utils.Timer;

    SerializableAttribute public class videomanager, there extends Sprite

    {

    private static var _instance: videomanager, there;

    private var con: NetConnection;

    private var vStream: NetStream;

    private var video: video;

    private var vWidth: uint;

    private var vHeight: uint;

    private var filePath: String;

    public void videomanager, there (enforce: Singleton)

    {

    }

    Public Shared function getInstance (): videomanager, there

    {

    If (_instance is nothing)

    {

    _instance = new videomanager, there (new Singleton);

    }

    return _instance;

    }

    public void init (path: String, w: uint = 720, h: uint = 480): void

    {

    filePath = path;

    con = new NetConnection ();

    con.addEventListener (NetStatusEvent.NET_STATUS, onNetStatus);

    con.addEventListener (SecurityErrorEvent.SECURITY_ERROR, onNetSecurity);

    con. Connect (null);

    }

    public void updateVideoSize (w: uint, h:uint): void

    {

    vWidth = w;

    vHeight = h;

    //

    Video.Width = vWidth;

    Video.Height = vHeight;

    }

    / * function public playVideo (startFrom: uint): void

    {

    }

    public function pauseVideo (): void

    {

    }*/

    public function resumeVideo (): void

    {

    vStream.togglePause ();

    }

    public function stopVideo (): void

    {

    }

    public function hideVideo (): void

    {

    }

    public void setAudioLevel (val: uint): void

    {

    var sndTrans: SoundTransform = new SoundTransform (val);

    vStream.soundTransform = sndTrans;

    }

    private function connectStream (): void

    {

    vStream = new NetStream (con);

    registerStreamEvents ();

    video = new Video (vWidth, vHeight);

    video.attachNetStream (vStream);

    vStream.play (filePath);

    startPreloader ();

    addChild (video);

    trace (vStream.bytesLoaded + "/" + vStream.bytesTotal);

    }

    private function registerStreamEvents (): void

    {

    vStream.addEventListener (StatusEvent.STATUS, onNetStatus);

    vStream.addEventListener (AsyncErrorEvent.ASYNC_ERROR, onAsyncError);

    }

    private function unRegisterStreamEvents (): void

    {

    vStream.removeEventListener (StatusEvent.STATUS, onNetStatus);

    vStream.removeEventListener (AsyncErrorEvent.ASYNC_ERROR, onAsyncError);

    }

    private function onNetStatus (evt: NetStatusEvent): void

    {

    Switch (evt.info.code)

    {

    case "NetConnection.Connect.Success":

    connectStream();

    break;

    case 'NetStream.Play.Complete ':

    videoPlayComplete ();

    break;

    case "NetStream.Play.StreamNotFound":

    trace ("unable to locate video:" + evt.toString ());

    break;

    }

    }

    private function onNetSecurity (evt: SecurityErrorEvent): void

    {

    trace ("Error occurred in connection." + evt.toString ());

    }

    private function onAsyncError (evt: AsyncErrorEvent): void

    {

    It's handful of mandate

    }

    private function startPreloader (): void

    {

    var TMR: Timer = new Timer (100);

    tmr.addEventListener (TimerEvent.TIMER, checkLoadProgress);

    TMR. Start ();

    }

    private function checkLoadProgress (evt: TimerEvent): void

    {

    trace (vStream.bytesLoaded + "/" + vStream.bytesTotal);

    If (vStream.bytesLoaded is vStream.bytesTotal)

    {

    trace ("slaughter the timer.");

    evt.currentTarget.removeEventListener (TimerEvent.TIMER, checkLoadProgress);

    }

    }

    private function videoPlayComplete (): void

    {

    TODO: Send the event indicating that the video is at the end.

    }

    }

    }

    Friend class Singleton {}

    :

    private function connectStream (): void

    {

    vStream = new NetStream (con);

    registerStreamEvents ();

    video = new Video (vWidth, vHeight);

    Video.Smoothing = true;

    video.attachNetStream (vStream);

    vStream.play (filePath);

    startPreloader ();

    addChild (video);

    trace (vStream.bytesLoaded + "/" + vStream.bytesTotal);

    }

  • How can I change the key of a lunch without losing the words in my karaoke VanBasco window when using cakewalk pro audio.

    Original title: Using cakewalk pro audio

    How can I change the key of a lunch without losing the words in my karaoke VanBasco window when using cakewalk pro audio. Can anyone help please

    Hello

    What operating system is installed on the computer?

    Contact Cakewalk for assistance:

    Here is the link: http://forum.cakewalk.com/default.aspx

  • How can I change the term of my video file?

    How can I change the term of my video file?  Windows DVD Maker is playing my video file listed as 26:18:32 only 26 hours instead of 26 minutes 18 seconds and 32 milliseconds.

    Hi MacChang,

     

    Thanks for posting in the Microsoft Community. It seems that you have a problem with the length of a video file playing on Windows DVD maker. This can be very frustrating for you, and I appreciate the efforts you have put in. Let us work together as a team to get this number fixed.

     

    We start with a few questions-

    (1) is specific to a particular video file?

    (2) have you made changes on the computer?

     

    I would like more information about the issue.

     

    Method 1-

     

    I wish that you disconnect any external devices to the computer. In addition, I would have you close all programs running in the background.

     

    Method 2-

    I recommend you perform the clean boot.

    Placing the computer in a boot minimum state helps determine if third-party applications or startup items are causing the problem. You must perform the steps in the article-

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/kb/929135

    Note: You must follow the step 3 of the article to return the computer to a Normal startup after you perform all the troubleshooting steps.

     

    In addition, see the article-

    Solve problems with creating a DVD-video using Windows DVD creation

    http://Windows.Microsoft.com/is-is/Windows7/troubleshoot-problems-with-creating-a-DVD-video-using-Windows-DVD-Maker

     

    We know if you need help. We will be happy to help you.

     

    Thank you.

  • How can you change the time of database (Sysdate) without changing the hour of the OS?

    I saw the archived post:

    "How can I change the date/time data (Sysdate) without changing the date of the OS? to https://community.oracle.com/message/3471626#3471626 "" "" "

    This post does not have a good answer unfortunately and as we have problems similar change of system clock where urgent need to do some future and passed the test of logic date/time, I thought it would be to try again. Anyone know how we could accomplish this change of date/time of database without changing the clock system of the OS?

    Thank you

    Charles

    Time Machine by Solution-Soft (Time Machine® |) Virtual clock for Time Shift and Application tests) provides a solution to this problem by using virtual clocks to specified users or PIDs and intercepts calls to the OS providing system clock is the case of a virtual clock.  So if a virtual clock set for 022823592016 for Oracle user, this OS user would see this date in every process owned and all connections to a DB owned instance would return a date and time just before the leap day of "systimestamp select from dual;"  There is a framework of Time Machine for Oracle on the market of the Oracle Cloud which is much more granular than this example and allows the travel time of the specific Oracle connections per user, host, or the name of the JDBC program.   Check here: https://cloud.oracle.com/marketplace/listing/4382882

  • How can I change the shape of my video overlay?

    How can I change the shape of my video overlay? I want to do the overlay in an oval shape rather than the default rectangle? How? I also have After Effects, if that helps.

    I want to do the overlay in an oval shape rather than the default rectangle? How? I also have After Effects, if that helps.

    [title published by mod]

    You have these options in the opacity effect?

  • How to slow down the sound from a video clip to the exact time (keyframes) and values?

    How to slow down the sound from a video clip to the exact time (keyframes) and values?

    I used the timewarp, but the sound is not affected.

    It is to be expected. Only the native time remapping affects sound, but given that EI is not an audio processing application, the quality is terrible. You must use the hearing or a similar program.

    Mylenium

  • How can I reinstall the elearning suite 2.5 without the disc?

    How can I reinstall the elearning suite 2.5 without the disc?

    Hi figh1ing

    Please visit: http://forums.adobe.com/message/5502348

  • How to import a MKV without quality loss.

    Can how I import a MKV to edit and burn? I know that I will more than likely need. I'm in AVI, but how do I do that without quality loss?

    What to do next?

    As you said, convert a UT.avi of the original file.

  • Satellite L300: How to record the sound from a video without sound

    OK, yes the title of the topic is not entirely clear. Here's my situation: I just bought a Toshiba Satellite L300 with Vista; Realtek HD Audio Manager is installed. I would like to record the sound of a video file using Goldwave (a sound editing program); but I don't want to have to listen to the sound, while it's recording.

    On Windows XP, you used to be able to record the sound of the stereo mix, but put the speakers on mute and it would record again. Now I find that I have to turn my speakers in order to record anything on my computer. (Yes, I fiddled with all mute buttons, insured that all reading and recording devices are working and front volumes. My current solution is to plug my headphones on my laptop and to reactivate the sound from the speakers to register... and not put the headphones in my ears)

    I have now spent in the last 4 hours looking for a solution, and I must say it's especially ridiculous. I used Vista before and I've heard rumors of how many people hate, but honestly, how is it that now the audio capabilities seem to be reduced?

    Does anyone have a solution of how to record sound with the speakers on mute?

    Hello

    I also recorded the audio of a video file using another software called 32. and Win XP
    I also used the stereo mix, but to be honest I have never muted the speakers while recording.
    To be honest I n don't know if it's possible, but if you want to test, you can try the Realtek HD audio Manager in the access panel and set the speakers to cut on the first tab called speaker.
    But as I said, I've never tested and that's why I m not very good if it will work.

  • How to print all the files in a folder without having to open each one?

    Hello

    Can someone tell me how to print all the files in a folder? I often need to print multiple files in a folder and it would allow me to save a lot of time!

    Thank you!

    I've done some testing, and it seems that Windows 7 allows print several files when they are all the same type of file.  So, for example, you can select and print 15 Word documents, but not a Word document and a single PDF document.

    To work around this limitation, you can print each file type separately.  For example, to print PDF files in a folder:

    1. Type *. PDF in the search for top-right box.
    2. For 1-15 files, press on CTRL + A to select all the.
    3. For 16 or more files, select 15 of them (click on the first, SHIFT + click the last).
    4. Click any file, and then click print .
    5. Repeat steps 3 and 4 as needed.

    Boulder computer Maven
    Most Microsoft Valuable Professional

  • How can I increase the volume for youtube videos?

    Volume problems

    How can I increase the volume of videos youtube - control panel shows me that my volueme is still 100% can hardly hear youtube videos.

    Hover your mouse over the video, and then point the mouse pointer on the volume icon on the floating toolbar that appears, make slide the volume knob to the right to increase the volume.

    Another thing to try if you still hear no sound, click on the volume icon in the Notification area of the Windows taskbar, click mix and watch if the mixer volume for Youtube is turned upward.

  • How to turn off the display after a while without input

    Original title:

    Activate the screensaver mode full-screen.

    Hello

    Windows by default is to disable the screesaver mode when an application runs in fulscreen. I need to enable it. I need to turn off the display after a while without input. So is it possible to do?

    Hello

    Thanks for choosing Microsoft Community to post your question. Windows 7 comes with the power settings using which, you can turn off the display when it is idle for some time.

    Please visit the following links and set the option to turn off the display according to your requirement.

    Sleep and extended: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/sleep-and-hibernation-frequently-asked-questions

    Power management

    http://Windows.Microsoft.com/en-us/Windows7/products/features/power-management

    Hope that the information provided is useful. Do not respond if you need more help.

  • How to adjust the size of a video, without resizing its proportions?

    I want to show a video on the half top of the screen and another video on the bottom of the screen. I would also like to register the motion to this: top half began to appear slowly and then take over the video completely. My goal is to make a drawing to disappear by having a hand pass it on. If the camera is always completely, this could be a smooth transition.

    Thank you!

    Put a video on video 1 and one directly above, on Video 2.

    Apply the effect of cropping on the video 2 video and use the tools in the effects Panel to crop the video as needed so that both are visible in the video at the same time. (You can also change the scale of the two videos settings in the properties of the motion, also on the Panel applied effects). Then you would keyframe animation of culture settings.

    You don't say what version of the program you are using, but it's the way that you would in version 11.

Maybe you are looking for