Video file is 200 GB?

So I just got body, and I edited my first video. I exported it 1080 p at 30 frames per second. The video lasts 47 minutes, and when it finished encoding after about an hour, I went to the location of the file and that he noticed that the video file is 200 000 000 KB (200 GB)!

Why? How is that even possible? Literally, it defies the laws of physics! The video is 1920 x 1080 btw. It's not that huge of a deal since my hard drive has 2 TB of space. But I like to keep all my video files to backup purposes, which is kind of impossible if one file has 200 GB of panic.

I am really annoyed now, everything just because I've never had such a file of any other editing software, no matter what length or the definition has been enormous. And the strange this is, it's not even HD, I mean it's 1080 p, but the easy video looks like just above 480 p.

Someone please help! What should I do?

Sure. At the top of the export settings window, you have the Format menu. Currently, you have selected AVI, change this in H.264 (screenshot 1). Note that my list will look a little different since I'm on a Mac, but it doesn't matter for this.

In the Preset menu drop-down directly below, go all the way down to see the YouTube presets (screenshot 2). You will be left with the same settings as screen shot 3.

Tags: Premiere

Similar Questions

  • Download and save audio and video files

    Hello

    I am trying to record audio and video files that are larger than 5 MB in size.

    I open a Http connection and asking to 128 KB each time until the completion of the data transmission.

    for some files that are 1 to 2 MB code does not work well, but if you have large files MB it throws the error, ' Eception Exception: myApp Application (201) does not; process is completed"

    How can I fix this error. I searched the forum for this error, I found some funda but has not found a solution.

    AM making ala invokeAndLater() and therefore not blocking is not the eventThread.

    Here is the flow of my code that establishes the connection and starts to download.

    the following code snippet shows the flow of the code.

    // Constructor: displays a popup screen that allows the user to select a list of audio/video files for the download. 
    
    // Dictionary obj is a vector that contains list of file names.// IAudioVideoPopUp is an interface implemented by the caller. 
    
    public AudioVideoPopUp(Dictionary[] v, IAudioVideoPopUp guideIntroManager)  {     super(new VerticalFieldManager());        if( v!= null)     {         caller = guideIntroManager;           for(int i =0; i< v.length; i++)            {             btnFileNames = new MyButtonField(v[i].value.toString(), "images/button1_big.png", "images/button2_big.png",  true, Font.PLAIN, 18, v[i]);             btnFileNames.setChangeListener(new FieldChangeListener()              {                     public void fieldChanged(Field field, int context)                    {                     if(field instanceof MyButtonField)                        {                         final MyButtonField tempField = (MyButtonField) field;                            UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());                           synchronized (UiApplication.getEventLock()) {                             UiApplication.getUiApplication().invokeLater(new Runnable(){                                  public void run()                                 {                                     UiApplication.getUiApplication().pushScreen(new WaitScreen());                                        caller.onClick(((MyButtonField) tempField).getDictionaryData());                                  }                             });                           }//                           PopupCloseThread pct = new PopupCloseThread(field);//                         pct.start();                      }                 }             });               add(btnFileNames);            }
    
              btnCancel = new MyButtonField("Close", "images/button1.png", "images/button2.png", true, Font.PLAIN, 18);         btnCancel.setChangeListener(new FieldChangeListener()             {                 public void fieldChanged(Field field, int context)                {                 UiApplication.getUiApplication().popScreen(UiApplication.getUiApplication().getActiveScreen());               }         });           add(btnCancel);       }
    
       }
    
    // onClick method that was implemented in the caller. 
    
    // dictionary is a vector, contains info about the selected file in the popup.
    
    public void onClick(Dictionary dictionary)   {     if(dictionary != null)        {         switch(ContentType)           {         case 1:               playAudio(dictionary);                break;            case 2:               videoSelected(dictionary);                break;            default:              break;            }     } }
    
    // the following code calls for the downloading and saving of the file.
    
    private boolean downloadAndSaveVideo(long movieID2, String fileName, String URL, int fileSize)    {     if(URL!= null)        {         try           {             String videoFileURL = AppConstants.SDCARD+AppConstants.CONTENT_PATH+fileName;             if(new DownloadCombiner(URL, videoFileURL, 128*1024).run())               {                 return updateVideoTable(movieID2, videoFileURL);              }         }             catch (Exception e)           {             Tools.print("XCO: GuideIntroManager: downloadAndSave: Error..:" + e.toString());          }     }     return false; }
    
    // this is not a thread class. // here an repeatdly making the requests to get all the data.// please go thru the run().
    
    public DownloadCombiner(String remoteName, String localName,         /*int connection,*/ int chunksize)    {     this.remoteName = remoteName;     this.localName = localName;       this.chunksize = chunksize;   }
    
    public boolean run()     {     boolean result = false;       try       {         int chunkIndex = 0;           int totalSize = 0;
    
              /*             * File connection             */           FileConnection file = (FileConnection) Connector.open(localName);         if (!file.exists()) {             file.create();            }         file.setWritable(true);           OutputStream out = file.openOutputStream();
    
             /*             * HTTP Connections            */           String currentFile = remoteName; //+ connectionType();            Tools.Debug("Full URL: " + currentFile);          HttpConnection conn;          InputStream in;           int rangeStart = 0;           int rangeEnd = 0;         while(true)           {             Tools.Debug("Opening Chunk: " + chunkIndex);
    
                  conn = (HttpConnection) Connector.open(currentFile,Connector.READ_WRITE, true);
    
                  rangeStart = chunkIndex * chunksize;              rangeEnd = rangeStart + chunksize - 1;
    
                  Tools.Debug("Requesting Range: " + rangeStart + "-" + rangeEnd);
    
                  conn.setRequestProperty("Range", "bytes=" + rangeStart + "-"+ rangeEnd);
    
                  int responseCode = conn.getResponseCode();                if(responseCode != 200 && responseCode != 206)                {                 Tools.Debug("Response Code = " + conn.getResponseCode());                 break;                }
    
                  Tools.Debug("Retreived Range: "+ conn.getHeaderField("Content-Range"));
    
                  in = conn.openInputStream();              int length = -1;              byte[] readBlock = new byte[256];             int fileSize = 0;
    
                  while((length = in.read(readBlock)) != -1)                {                 out.write(readBlock, 0, length);                  fileSize += length;                   //Thread.yield(); // Try not to get cut off               }             totalSize += fileSize;
    
                  Tools.Debug("Chunk Downloaded: " + fileSize + " Bytes");              chunkIndex++; // index (range) increase               in.close();               conn.close();             in = null;                conn = null;              /*                 * Pause to allow connections to close and other Threads to run.               */               //Thread.sleep(1000);         }         Tools.Debug("Full file downloaded: " + totalSize + " Bytes");         if(totalSize>0)            {             result = true;                Tools.Debug("Wrote file to local storage");           }else{                result = false;               file.delete();            }         out.close();          file.close();     }         catch (Exception e)       {         result = false;           Tools.Debug(e.toString());        }
    
          return result;    }
    

    A little patience please.  Don't forget that you are awake does not mean that other people are.  I'd leave a Thread open for at least 24 hours before bumping.

    I'm sorry to tell you that invokeLater runs the executable on the wire of the event, not a separate Thread.  If you have actually started the treatment in the very thing you're trying to get away from.

    You must run the execution in DownloadCombiner treatment in a separate Thread.  This is why, in the article, which I suppose you DownloadCombiner, it extends Thread.

    Just for the record, DownloadCombiner is here:

    How - to download large files using the BlackBerry Mobile data system
    Article number: DB-00619
    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800431/How_To _...

  • Treatment of small video files in a project

    Hello

    I use after effects to a video creation consisting of many other small videos. And here's my problem with him:

    Whenever I have added a small video file for my project I just need only a small fraction of it. But these small fractions are not normally at the beginning of this file. Which means that I have to drag and drop the file several times to the left. Is there a way to speed up this process? Maybe as each video file droppped into my project starts at the level of the mark 2 min or something? I then would save a lot of time to drag things around.

    My other problem is that I have over 200 videos, I need to put into my project. But their import and later research in these videos takes a long time. Is there perhaps a way to fix that too? Normally, I do not know before the end of the project which, of these 200 videos, I need (normally only need 20 to 30 of them, so I put them all in there).

    Thank you very much for all the advice

    Chris

    PS: on a technical level: I have 4 GB of Ram, but it seems after effect uses only 50% (with the help of win 7 64 bit). Can I increase this? And also, what part of my computer would increase the working speed in after effect most (I don't want to make since I do that on another computer, I only mean put 200 videos in, drag and drop things, previews etc.). An SSD fix might that be?

    You can also set points in the window film in the latest versions of After Effects and output. I do it all the time.

  • Name of the video file on label listbutton

    I play videos FMS of XML. but no path to filelist need visible on listbutton.label.

    How can I show only the name of video file on listbutton.label;

    <? XML version = "1.0" encoding = "utf-8"? >

    < XML >

    < FileList >records/store1/2013/1/2/15/video1< / FileList >

    < FileList > files /store1/2013/1/2/15/video2 < / FileList >

    < FileList > files /store1/2013/1/2/15/video3 < / FileList >

    < / XML >

    AS3

    function playlistLoaded(e:Event):void
    {
              xmlPlaylist = new XML(urlLoader.data);
    
    for (var i:int=0; i<xmlPlaylist.FileList.length(); i++)
      {
         listbutton = new Button();
         listbutton.y = i * 19 + 1;
         listbutton.width = 200;
         listbutton.height = 20;
         listbutton.label = xmlPlaylist.FileList[i];
         }
    
    }
    

    He finally got.

    A string (xmlPlaylist.filelist [i]). Split('/').splice (6). Join("/");

  • How can I get the iMovie video files in the photo library?

    How can I get the video files of "iMovie - bibliotek.imovielibrary" in the photo library?

    Is to select your library from the libraries pane and choose my brackets at the top of the screen. Then select the clips you want and share file on the desktop. Then import in photos.

  • Put links to video files in web pages - want option 'Open with' when the viewer clicks on the links.

    If I go to a video file that is stored in my computer, for example xyz.mp4 and right click on it, one of the options is 'Open with' and several options for example QuickTime player, RealPlayer are presented for me to choose. But when I add the file to a web page and create a link to it for example http://sillyvideos.com/xyz.mp4 and then I right click on this link (on the web page) in my Firefox browser, I don't get the option 'open with '. My question is: is it possible to put a link to a video in a web page, so I or other viewers can click right on it and benefit from the option 'open with' (so we can choose the drive to open it, without having to download first in our computers)?

    Normally what happens, is that the server sends the content with one or more headers that dictate what Firefox did with the video.

    For example, if the content is sent with a header that Firefox can play internally, then Firefox can open the video in a tab and use a built-in player. You can see with MP3s when the server says that it is "audio/mpeg" content. However, if the server sends a content type that a capable of handling plugin, Firefox can attempt this plugin.

    Normally Firefox will assume that the content is meant to be displayed in the browser, unless it is an unknown type or has a content-disposition header set to "attachment". In these cases, Firefox usually has open/save/Cancel dialog box.

    I don't know what kinds of choices you want to offer visitors to your site, but if you thought giving them a choice of the players external , sending to content-disposition: attachment to make appear the probably the most logical open/save/Cancel dialog box. With smaller files such as JPEG and PDF, I did it with a script on the server side (for example, a PHP script). I don't know if the script would work with multimedia files.

    If you want to provide more choices, you might need the buttons or links in the page.

    This example applies to a PDF file, but the same idea applies to the image files and it can work with files more mainstream media. (In this case, you change the script to specify the correct content type.)

    Implementation of the PHP approach, you follow these steps. This assumes that your server supports PHP (most do so) and that your Web host allows you to download PHP files.

    (1) save the following as getpdf.php file

    http://www.jeffersonscher.com/RES/getpdf.php.txt

    (2) using a FTP software or your server download function, copy getpdf.php into the same folder as your PDF file

    (3) test with your link. In the address bar, or in an e-mail, insert the following text before the name of the PDF file:

    getpdf.php?f=
    

    Thus, for example, this direct link to the PDF:

    http://www.jeffersonscher.com/RES/Mixed_Content_Blocking.PDF

    would become this link to the PHP file:

    http://www.jeffersonscher.com/RES/getpdf.php? f =Mixed_Content_Blocking.pdf

  • Video file on Mac turns into .jpg on PC when transferred

    I'm trying to transfer my photos and videos of the desktop computer iMac to a PC via a hard drive external. I've formatted it as I had to. I took a small sample to test. The problem I have is that my video files on Mac turn into a .jpg on the PC file.

    How can you transfer them? To change the extension itself? Never heard say that happen on any computer system, let's assume that I would try to make the copy using double Commander called free file manager on OS X and the PC to be sure we have file transfer control

  • Firefox does not remember volume level on flash for example of YouTube videos files, why?

    Audio and video files always start playing at full volume, rather than to remember the previous volume. Disable all add-ons does not solve the problem, and the problem does not exist when I use other browsers. I tried to go into the settings of my flash (local and global when right-clicking on a video) and say things to allow the storage of data on my hard drive, but it also has not solved the problem.

    Some flash videos in fact retain the status level / mute volume, but YouTube, DailyMotion and others are not among them even if they are working correctly when I use Chrome. This is extremely irritating because it resets the volume up during playback of the playlist.

    I noticed just now that you somehow seem to be two versions of the Flash Player installed. Perform a new installation of the latest version as follows.

    1. From the next page, save the program uninstall handy somewhere, like the office.

    2. In the next page, save the installer for other browsers. If you are also using Flash Player in Internet Explorer, also save the ActiveX version.
    3. Close all applications.
    4. Launch the uninstaller.
    5. In Windows Explorer, try to open the following folders. If they exist, delete them manually.
      • C:\Windows\system32\Macromed\Flash\
      • %AppData%\Adobe\Flash Player\
      • %AppData%\Macromedia\Flash Player\
    6. Restart your computer.
    7. Run the Setup program for the other browsers.
    8. Run the installation of the ActiveX program if you downloaded it.
  • How to import only partial video file?

    I try to import video files from SanDisk in Final Cut Pro X.  However, I would only transfer a portion of each video file due to the large size of the files.  How can I do this?  Or do I have to download the entire file?  Thank you very much for the help!

    UUnless the media comes from a camera or from the Archives of the camera, you must import the entire file.

  • How to make a Windows Media video file .wmv in FireFox? What is the name of extension or add-on required?

    I have Windows 7 and FireFox 24.0

    I'm doing a standard Microsoft Media Video file. MWV run. When I click on the video link to plant video, I get a message saying that I need a plugin to run the file.

    I already ran into Setup on the link below. This installer named wmpfirefoxplugin.exe does not install anything in my FireFox plugins list or the list of Extensions.

    https://support.Mozilla.org/en-us/KB/play-Windows-Media-files-in-Firefox?ESAB=a & As = AAQ

    Where else can I try make FireFox run a. File MWV?

    Hello, please try this: enter Subject: config in the bar firefox address (confirm the message information where it appears) & search for the preference named plugins.load_appdir_plugins. Double-click it and change its value to true (a restart of the browser may be needed later for the change to take effect).

    some information on the issue are explained in http://www.ghacks.net/2013/05/15/why-you-may-have-lost-access-to-plugins-or-extensions-in-firefox-21/

  • Need to open video files to external viewer

    I work in a video studio. We have a management system of internal project based on the web, where we keep all the approved versions of mp4 video projects. Before today, I could click on any video file and it automatically opens in an external viewer (quicktime) that is necessary, because sometimes I have to open several videos at the same time and compare.

    Today, however, whenever I click on one, it will open in a Firefox window. I went to tools > Options > Applications and modified manually MP4 to open in Quicktime. But files still open in the window of Firefox, making it impossible to open 2 files for comparison.

    Please help me get this back to the way I need to work!

    Enter about: config in the firefox address bar (confirm the message information where it appears) and search for the preference named media.windows - media - foundation.enabled. Double-click on it and change the false value - this will also disable the support of native html5 for mpeg formats incorporated into well sites.

    Another way to download files without tweaking the above-mentioned preference would be to right click on the file and choose to download similar only...

  • Video files (.mov) are not displayed "a plugin is required to view this content.

    Mac user. Video files (.mov) are not displayed "a plugin is required to view this content. This plug-in is needed and where can I find it?

    You can also see this MozillaZine forum thread.

  • Video files pasted/exported on USB or HDD twice?

    Hey all,.

    When I download a video or export some of my own and put them on a USB Flash drive to connect to my Samsung Smart curved TV, rather than a single video that works on the USB port, there are two files. Who says: "unable to read the selected format" and another who plays very well.

    It's frustrating, because instead of only 40 videos on my USB key, I have 80. And half do not work, which is difficult to navigate as it shows only 8 videos through the screen of the TV.

    This problem is not moved when the Flash DRIVE has been formatted for WINDOWS ONLY, he started since I erased and reset it as MS-DOS FAT *.

    Thank you!

    These files are not additional video files, are Mac system files, they are hidden on a disk as Mac OS X, but are visible when the drive is formatted under DOS.

    I delete these files before sending video on USB memory drives customers using an application called own ejection, it is free software and is available for download here: own ejection

  • How to send large video files from my iPad

    How to send large video files from my iPad

    The restriction for large files to mailing in general is defined by your email provider. Most of the suppliers imposed restrictions on the size of attachments. You can contact your e-mail for more information provider, but in general, consider a large video file too large to email.

  • When I click on a video file, I wonder what program to use to run it.

    I use any plugins to play my video files. Instead, I trust the Player multimedia itself. Currently, there are a lot of files that open in VLC or Windows Media Player, when I click on their link in Firefox. Some other types of files do not open immediately and I am prompted with a box asking me to choose a program to run the file. I click on "Do it again" or something like that, said, hoping that when I opened such a file, I would not invite with this message again. Unfortunately, this is not the case. While many files opens my media players directly, there are many who ask me what program to use, even if it is verified to use a specific program.

    The setting automatically uses a specific program is linked to the MIME type that the server sends with the file.

    If it's a generic MIME type then Firefox does not offer that choice and in other cas servers can use different MIME types.

Maybe you are looking for

  • not ask web pages uddenly that appears when you click on a link to

    I'm on a Web page that I want and I click on a relevant link for more information about this page. The link opens correctly but so is another page that I did not and has no connection or interest to what I do. Then I have to cancel the unwanted page

  • Could please tell me what are aliases for Firefox and why they are 9 of them?

    In my applications than alias Firefox folder keeps appearing, I now have 9 of them. Could you please tell me what they are? Also, when I go to open a new tab the screen fills up with boxes of sites, I've been to previously. I don't like that, how can

  • Re: Can I install Win7 on my laptop Satellite NB?

    Hello I took a photo with the webcam and has always been, it appears at the beginning of the pc before the password.Yet, she is no longer in the folder "image film library. I think it's great, how can I please delete? Another question: is it possible

  • Install W2K on Tecra 8100

    Hi all I am trying to install W2K on a Tecra 8100, but I think I'm doing something wrong, because it keeps failing. If I just insert the CD it starts to start a load several files at a time when the Setup starts Windows 2000 (present at the bottom of

  • What version of Windows to upgrade for (32-bit or 64-bit)

    Hello I have HP Pro 3010 microtour, purchased January 2010 and current running Windows 7 Pro (32 bit). I want to do a clean installation of Windows Pro 8.1 and need to know if I can install a 64-bit system, or do I stay with 32-bit) In addition, what