How many files are typically created from an mpeg 2 encode?

In FCP I did export - using compressor. Compressor opens my sequence and I encoded it to mpeg 2. The resulting folder has 3 .m2v files. Furthermore as I open each m2v file in quicktime, it appears they are all my exported sequence. I'm trying to understand why it created 3. Thanks.

How many times did you hit submit? Check in Compressor history window, the lower right window.

Similar Messages

  • Having issues finding out how many bytes are sent/recieved from a socket.

    Hello everyone.
    I've searched the forums and also google and it seems I can't find a way to figure out how many bytes are sent from a socket and then how many bytes are read in from a socket.
    My server program accepts a string (an event) and I parse that string up, gathering the relevant information and I need to send it to another server for more processing.
    Inside my server program after receiving the data ( a string) I then open another port and send it off to the other server. But I would like to know how many bytes I send from my server to the other server via the client socket.
    So at the end of the connection I can compare the lengths to make sure, I sent as many bytes as the server on the other end received.
    Here's my run() function in my server program (my server is multi threaded, so on each new client connection it spawns a new thread and does the following):
    NOTE: this line is where it sends the string to the other server:
    //sending the string version of the message object to the
                        //output server
                        out.println(msg.toString());
    //SERVER
    public class MultiThreadServer implements Runnable {
         Socket csocket;
         MultiThreadServer(Socket csocket) {
              this.csocket = csocket;
         public void run() {
              //setting up sockets
              Socket outputServ = null;
              //create a message database to store events
              MessageDB testDB = new MessageDB();
              try {
                   //setting up channel to recieve events from the omnibus server
                   BufferedReader in = new BufferedReader(new InputStreamReader(
                             csocket.getInputStream()));
                   //This socket will be used to send events to the z/OS reciever
                   //we will need a new socket each time because this is a multi-threaded
                   //server thus, the  z/OS reciever (outputServ) will need to be
                   //multi threaded to handle all the output.
                   outputServ = new Socket("localhost", 1234);
                   //Setting up channel to send data to outputserv
                   PrintWriter out = new PrintWriter(new OutputStreamWriter(outputServ
                             .getOutputStream()));
                   String input;
                   //accepting events from omnibus server and storing them
                   //in a string for later processing.
                   while ((input = in.readLine()) != null) {
                        //accepting and printing out events from omnibus server
                        //also printing out connected client information
                        System.out.println("Event from: "
                                  + csocket.getInetAddress().getHostName() + "-> "
                                  + input + "\n");
                        System.out.println("Waiting for data...");
                        //---------putting string into a message object-------------///
                        // creating a scanner to parse
                        Scanner scanner = new Scanner(input);
                        Scanner scannerPop = new Scanner(input);
                        //Creating a new message to hold information
                        Message msg = new Message();                    
                        //place Scanner object here:
                        MessageParser.printTokens(scanner);
                        MessageParser.populateMessage(scannerPop, msg, input);
                        //calculating the length of the message once its populated with data
                        int length = msg.toString().length();
                        msg.SizeOfPacket = length;
                        //Printing test message
                        System.out.println("-------PRINTING MESSAGE BEFORE INSERT IN DB------\n");
                        System.out.println(msg.toString());
                        System.out.println("----------END PRINT----------\n");
                        //adding message to database
                        testDB.add(msg);
                        System.out.println("-------Accessing data from Map----\n");
                        testDB.print();
                        //---------------End of putting string into a message object----//
                        //sending the string version of the message object to the
                        //output server
                        out.println(msg.toString());
                        System.out.println("Waiting for data...");
                        out.flush();
                   //cleaning up
                   System.out.println("Connection closed by client.");
                   in.close();
                   out.close();
                   outputServ.close();
                   csocket.close();
              catch (SocketException e) {
                   System.err.println("Socket error: " + e);
              catch (UnknownHostException e) {
                   System.out.println("Unknown host: " + e);
              } catch (IOException e) {
                   System.out.println("IOException: " + e);
    }Heres the other server that is accepting the string:
    public class MultiThreadServer implements Runnable {
         Socket csocket;
         MultiThreadServer(Socket csocket) {
              this.csocket = csocket;
         public void run() {
              try {
                   //setting up channel to recieve events from the parser server
                   BufferedReader in = new BufferedReader(new InputStreamReader(
                             csocket.getInputStream()));
                   String input;
                   while ((input = in.readLine()) != null) {
                        //accepting and printing out events from omnibus server
                        //also printing out connected client information
                        System.out.println("Event from: "
                                  + csocket.getInetAddress().getHostName() + "-> "
                                  + input + "\n");
    System.out.println("Lenght of the string was: " + input.length());
                        System.out.println("Waiting for data...");
                   //cleaning up
                   System.out.println("Connection closed by client.");
                   in.close();
                   csocket.close();
              } catch (IOException e) {
                   System.out.println(e);
                   e.printStackTrace();
    }Here's an example of the program works right now:
    Someone sends me a string such as this:
    Enter port to run server on:
    5656
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=5656]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=4919,localport=5656] connected.
    hostname: localhost
    Ip address: 127.0.0.1:5656
    Waiting for data...
    Event from: localhost-> UPDATE: "@busch2.raleigh.ibm.com->NmosPingFail1",424,"9.27.132.139","","Omnibus","Precision Monitor Probe","Precision Monitor","@busch2.raleigh.ibm.com->NmosPingFail",5,"Ping fail for 9.27.132.139: ICMP reply timed out",07/05/07 12:29:12,07/03/07 18:02:31,07/05/07 12:29:09,07/05/07 12:29:09,0,1,194,8000,0,"",65534,0,0,0,"NmosPingFail",0,0,0,"","",0,0,"",0,"0",120,1,"9.27.132.139","","","","dyn9027132107.raleigh.ibm.com","","","",0,0,"","","NCOMS",424,""
    Now my program makes it all nice and filters out the junk and resends the new string to the other server running here:
    Enter port to run server on:
    1234
    Listening on : ServerSocket[addr=0.0.0.0/0.0.0.0,port=0,localport=1234]
    Waiting for client connection...
    Socket[addr=/127.0.0.1,port=4920,localport=1234] connected.
    Parser client connected.
    hostname: localhost
    Ip address: 127.0.0.1:1234
    Event from: localhost-> PacketType: UPDATE , SizeOfPacket: 577 , PacketID: 1, Identifer: UPDATE: "@busch2.raleigh.ibm.com->NmosPingFail1" , Serial: 424 , Node: "9.27.132.139" , NodeAlias: "" , Manager: "Omnibus" , Agent: "Precision Monitor Probe" , AlertGroup: "Precision Monitor" , AlertKey: "@busch2.raleigh.ibm.com->NmosPingFail" , Severity: 5 , Summary: "Ping fail for 9.27.132.139: ICMP reply timed out",StateChange: 07/05/07 12:29:12 , FirstOccurance: 07/03/07 18:02:31 , LastOccurance: 07/05/07 12:29:09 , InternalLast: 07/05/07 12:29:09 , EventId: "NmosPingFail" , LocalNodeAlias: "9.27.132.139"
    Lenght of the string was: 579
    The length of the final string I sent is 577 by using the string.length() function, but when I re-read the length after the send 2 more bytes got added, and now the length is 579.
    I tested it for several cases and in all cases its adding 2 extra bytes.
    Anyways, I think this is a bad solution to my problem but is the only one I could think of.
    Any help would be great!

    (a) You are counting characters, not bytes, and you aren't counting the line terminators that are appended by println() and removed by readLine().
    (b) You don't need to do any of this. TCP doesn't lose data. If the receiver manages get as far as reading the line terminator when reading a line, the line will be complete. Otherwise it will get an exception.
    (c) You are assuming that the original input and the result of message.toString() after constructing a Message from 'input' are the same but there is no evidence to this effect in the code you've posted. Clearly this assumption is what is at fault.
    (d) If you really want to count bytes, write yourself a FilterInputStream and a FilterOutputStream and wrap them around the socket streams before decorating them with the readers you are using. Have these classes count the bytes going past.
    (e) Don't use PrintWriter or PrintStream on socket streams unless you like exceptions being ignored. Judging by your desire to count characters, you shouldn't like this at all. Use BufferedWriter's methods to write strings and line terminators.

  • Obvious Way to Tell How Many Files are Selected?

    I’ve been trying my best to love Lightroom, and I get close, but there’s one problem that I just can’t get past.
    Five minutes ago, I tried to export one photo, and I ended up exporting 52 photos.  This happens all the time. If I had a dime for every time I exported 500 photos instead of 1 photo, moved 500 photos instead of one photo, etc, I’d have a lot of dimes.
    Anyway, I deleted the 51 extra exports, synced the folder, got everything where I wanted it, then … exported 52 photos again.
    Sigh.
    The only way I’ve been able to avoid this is in the past is by obsessively pressing Command+D.  When I’m trying to do anything, I pound these two keys like there’s no tomorrow, but of course, I have to re-select the files I do want to perform actions on.
    I kept thinking I’d get used to it, but I’m still having problems to no end.  Unless I look very, very closely, I can’t tell if photos are selected or not, and if an entire screen full of photos are selected, they all look the same, so I really can’t tell.
    That’s the background, now my questions if I may:
    Is there any way to get a dialog box before performing actions on multiple photos?  Something that says, “this action will be performed on 1,871 photos, do you want to proceed?” or something to that effect?
    Ironically, it already does this when I want to delete something, which is great, but no such luck for any other actions.
    By any chance, is there something I can do to make the number of photos I have selected, more obvious?
    I know this is not a bug or program flaw, it’s a flaw with how my brain works with the program, but if I could figure out a way to make them work together , this application would be pretty awesome.  As it is, I spend more time undoing mistakes than I do organizing and editing photos.
    Thank you very much for any help.

    I am so pleased to read your post and realize I'm not the only one that gets tripped up by this! I've bee using LR extensively for more than two years now and even today, just now, I wanted to export ONE file, and the highlighting onscreen appeared to indicate I've selected one file, but turned out it was dozens of files. Now... when I'm simply exporting copies of files to another folder it's not a dangerous situation. BUT! It is very dangerous if one wishes to delete a file or several files and you think those are the only files you're deleting. Many, many times I have caught this in time, fortunately. To me this is one example of how the experience of software designers do not well understand how the end user will understand a program. Professional photographers are very specific with everything they do and don't want a program tripping them up continually. This obvious confusion over which files are actually "selected" needs cleared up.
    I read the responses to your post and find them dissatisfying. Please, Adobe, test your software with actual working photographers and not just Adobe engineers who may also happen to be amateur photographers.

  • How many fonts are free prvoide from Adobe?

    Dear Sir/Miss:
      I want to know how many fonts users can free download the fonts?
    Cause someone tell me, if you install Adobe reader, you can use their fonts for free !? and your system also will install these fonts?

    Here is a link to a page that lists the fonts included with the various CS5 editions, including the Master Collection:
    http://www.adobe.com/type/browser/fontinstall/cs5installedfonts.html. (An  Adobe representative told me that CS5.5 includes exactly the same fonts as CS5.)
    As you can see, only a very small subset of the fonts in Font Folio 11 are included with the CS5 suite.

  • How many files are there in a folder with subfolders ?

    ¿How do I count the files in a folder with subfolders?

    Niel's advice is hardly complicated, but try this one.
    1. Download the free EasyFind.
    2. Open the app and set the options as shown here:
    3. At the right of the interface, choose which drive you want to count all files of.
    4. In the search field, enter a single asterisk * and press Enter.
    It will list only visible files in all folders and subfolders. I did this to a drive that didn't have a whole lot on it. This count at the top of the list of items was:
    I copy/pasted the output into TextWrangler to see how many lines there were. 401 was the correct number of visible files. The value 441 was the total number of files on the drive including hidden items and folders.

  • How many bits are raw images?

    1. How many bits are images taken from a camera with a proprietary format? Are they 12 bit or 16?
    2. After making adjustments in ACR, do you bring the image into Photoshop at 12 or 16 bits?
    Thanks.

    web.boards wrote:
    1.How many bits does the average point-and-shoot camera capture when shooting jpgs?
    2. How much of a visible difference is there between 12, 14, and 16 bit raw files?
    3. What do you mean by the are "opened into 8 or 16 bit precision based on the Camera Raw preferences"? Does this mean that some of the bits could be thrown away if they are opened with 8 and it was taken with 16 bits?
    Thank you.
    Jeff Schewe has answered the question about bit depth of the raw capture, but one must realize that noise in the image limits the effective bit depth of the capture, since it does not make sense to quantify the signal from the sensor in steps finer than the level of noise in the image. These considerations are discussed in an excellent article by Emil Martinec:
    http://theory.uchicago.edu/~ejm/pix/20d/tests/noise/noise-p3.html#bitdepth
    Some of the newer high end dSLRs offer 14 bit quantization, but the gain in levels is often negligible because of noise. P & S cameras are much noisier than high end dSLRs and their effective bit depth in terms of the number of actual levels that can be perceived in the rendered image is open to question. There is a loss of levels when one goes from a linear raw space to a gamma encoded space such as Adobe RGB. Bruce Lindbloom's levels calculator can calculate this loss. The reader should try a few values with the calculator using the bit depth of the camera and a gamma of one and a gamma of 2.2 for the aRGB. With Photoshop, use a bit depth of 8 or 15, since Adobe uses a bit depth of 8 or 15 in Photoshop, effectively halving the number of levels over what could be obtained with full 16 bit output. However, for current cameras, this is of no significance.
    http://www.brucelindbloom.com/

  • How many softwares are there to create a setup file for java programs

    Hi, i am new to java
    I want to know how many softwares are there to create a setup file for java programs.
    I know one software i.e java launcher to create a setup file.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.
    And don't think that i am wastiing ur time with this question .
    Help me regarding this topic.
    Thanks in Advance

    superstar wrote:
    I want to know how many softwares are there to create a setup file for java programs.13, no wait, 42.
    I know one software i.e java launcher to create a setup file.You should clearly identify what you think you already know.
    I want to know about any other softwares are available to create a setup file for java programs.
    I created a setup file for swings program in JCreator.Is this the one you talked before, or is this different?
    And don't think that i am wasting ur time with this question .Why should I not think that?

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

  • When we create a queue how many files get created???

    Hi All,
              When we create a resource suppose a queue then how many files get created or modified from that action internally??
              Thanks in advance
              Sumeet

    In 8.1, one file: "config.xml"; in 9.0 one or two files (your JMS module file, and potentially the config.xml) .

  • How Many Emails Are Sent Using Cres From a Specific Domain

    Am I able to produce a report which displays how many emails are sent using Cres Secure from a specific domain?

    There isn't a way to generate a "formal" report on this - but, you can tailor your own with using 'grep' on the CLI of your appliance... choose your mail_logs and use the key word "PXE encryption filter"
    Ex.
    <snip>
    Enter the number of the log you wish to grep.
    []> 17
    Enter the regular expression to grep.
    []> PXE encryption filter
    Do you want this search to be case insensitive? [Y]> 
    Do you want to tail the logs? [N]> 
    Do you want to paginate the output? [N]> 
    Define file selection pattern.
    []> 
    Mon Apr 14 10:09:17 2014 Info: MID 72 was generated based on MID 71 by PXE encryption filter '_CRES_encrypt'
    Mon Apr 14 12:08:58 2014 Info: MID 91 was generated based on MID 90 by PXE encryption filter 'SB_SSN'
    Mon Apr 14 12:32:01 2014 Info: MID 94 was generated based on MID 93 by PXE encryption filter '_CRES_encrypt'
    Tue Apr 15 12:04:35 2014 Info: MID 103 was generated based on MID 102 by PXE encryption filter '_CRES_encrypt'
    Tue Apr 15 16:07:24 2014 Info: MID 106 was generated based on MID 105 by PXE encryption filter 'Default Action'
    Tue Apr 15 16:10:50 2014 Info: MID 109 was generated based on MID 108 by PXE encryption filter '_CRES_encrypt'
    Wed Apr 16 10:57:22 2014 Info: MID 113 was generated based on MID 112 by PXE encryption filter 'Default Action'
    Wed Apr 16 11:00:12 2014 Info: MID 116 was generated based on MID 115 by PXE encryption filter 'Default Action'
    So - you can see that 8 messages were in mail_logs that went through the associated encryption filters.  If you export your mail_logs to a syslog server - and have full grep/sed/awk capabilities, you could then just do a count based on the grep string you are after to get the #'s easier.
    -Robert

  • How many objects are created?

    I have this question which some one posted to me.
    He asked me how many objects are created when an object of a simple class is created for example
    class A{
    public static void main(String args[])
    A a1 = new A();
    Now how many objects are created? I think only one. Can anyone tell me if any other objects are also created.
    Plz tell me .

    No, the answer is indeed 1. All the other objects
    (including the String[] in the main method
    parameters) are created outside of the A
    class, either by the JVM itself or by some other
    class that calls the A.main() method. You can try
    this out for yourself by adding a constructor such as
    A()
    System.out.println("Creating class A");
    } and see what prints out.Take a closer look at the question:
    how many objects are created when an object of a
    simple class is created for exampleIt doesn't say "how many objects of type A are created".
    I.e. The VM has to load class A before you can create an object from it, and thus an object of type Class is created. There are also a bunch of other objects which needs to be created before you can instantiate A.
    Kaj

  • How many messages are in an archive file?

    Hi,
    Is there a way to tell how many messages are written to each archive file?  It looks like the default file size is 200M.
    Your help will be greatly appreciated.
    Regards,
    Rick

    Hey
    If you really want,you can cancel this job in sm37.
    But i would say that you can let it run. as long as it does not affects the performance of PI system you should be ok.
    a better approach would have been to increase the retention period in sxmb_adm,then go to SE38 and execute the program RSXMB_SHOW_REORG_STATUS, this will tell you how many messages will be archived/deleted once the job run.
    You can set the retention period so that it takes around 50-60K messages, then let the report run ,should finish in 3-4 hours max (thats what i used to do), then go back to sxmb_adm and reduce the retention period.execute the report again and see how many messages it will archive now.
    Keep on doing this until you archive/delete all the messages.
    Thanks
    Aamir

  • TA22652 How many computers are authorized to play music from my account?

    How can I tell how many computers are authorized to play music from my account?

    No one here could possibly tell you that.
    This is a user to user support forum.
    Try reading the article from which the question was posted.

  • How many Objects are created in this?

    Hi,
    How many objects are created in the flwg code:
    String str = new String("Hello");
    String str2 = "Hey there";
    str = str + str2;

    Depends if you're counting objects created at compile time.
    "Hello" is created at compile time. That's 1.
    new String("Hello") creates a new String object at runtime, pointing its backing array at the "Hello" in the constant pool. That's 2.
    "Hey there" is created at compile time. 3.
    str + str2 I might do everything at compile time, or it might do some at runtime. I don't know if str is considered a compile time literal here. I think not, but I'm not sure. You can check by using javap. If I'm correct, then at runtime you'll create a StringBuffer (4) and another String (5).
    So I'd say 5 objects. But if the compiler treats str as a literal and therefore can do the str+str2 at compile time, then it might do so without creating the StringBuffer. Or it might still create it at compile time, use it, and throw it out.

  • How many sessions are created in Server ?

    Hi All developers,
    SCJP back again.........
    Anybody please tell me......
    Is there any way to find out how many sessions are created in server ?
    Thanks in advance ..............

    Only by keeping track of them yourself.
    The various session listeners - SessionListener, SessionBindingListener are usefule here.

Maybe you are looking for

  • What went wrong in script?

    Hi Gurus Please let me know how to achive data deletion in destination app nothing gets deleted when i run this script , is there something that i need to include? my script is XDIM_MEMBERSET TIME = %TIME_SET% *XDIM_MEMBERSET VERSION = %VERSION_SET%

  • Why won't my itunes open on my mac?

    It keeps saying an unknown error has occured (13010). Can I fix this?

  • AIX (Oracle 8.1.6) to MS/SQL Server (ODBC)

    Hi, The company I am working for is about to evaluate the Oracle Transparent Gateway to connect 8.1.6 (on AIX) to MS/SQL Server (on NT). I have heard that you can do this via ODBC (on AIX) to ODBC (on NT). Does anyone have a step-by-step guide on how

  • Batch load script for Order Management with Oracle R12 EBS

    Hello, I am looking for a way to load a million dummy test records into Order Management. For example, I would like to automate a batch process to generate a million new sales orders for Oracle 12.1.1 EBS on Linux platform. If anyone has an idea on h

  • "Revert to Original" Grayed out

    I notice on all photos in my iPhoto '08 library that the "Revert to Original" item is grayed out in the menu. This appears for all photos, but I know the originals are in the system, as they can be found in Finder, in the unaltered state that I impor