Inserting the timestamps in chapters

I joined some Quicktime movies together and tried to insert chapters, but I kept getting an error about the time not being right. I was using the Quicktime Help guide part called, "Editing and Authoring/Creating a Chapter List for a Movie." On # 7 it said to click on "Movie Info" and there's not a "Movie Info" to click onto. So I clicked on Movie Properties. And in that was a description of how long the movie is. When I was joining the movies together, I wrote down the time where each movie began. Ex: 4:00, 8:33, 11:26, etc. The directions said to write down the town above the chapter title. So, I did that using the times above. And I kept getting a message saying that the times weren't right. What am I doing wrong? There's a time underneath the title that the directions didn't say anything what to do with that. I need help!!
Thanks!
Lisa

The "Movie Info" window has been renamed Movie Inspector in version 7.
Use it to note the "time" for your chapter tracks.

Similar Messages

  • OCCI Fractional time insertion using Timestamp class

    Hello,
    On linux with oracle 10g, I modified the demo app occidml to insert a Timestamp into a table. I print the factional time from the timestamp after it is created to verify that indeed it is the correct value. However, when I query the database using SQL, I find that the fractional time component didn't get inserted. Any ideas on how to resolve this would be highly appreciated.
    Here is the code snippet for inserting the timestamp..
    string sqlStmt = "INSERT INTO author_ag VALUES (:x, :y)";
    stmt=conn->createStatement (sqlStmt);
    try{
    Timestamp ts(env, 2008,9,10,11,12,13, c1);
    uint h,m,s,f;
    ts.getTime(h, m, s, f);
    stmt->setTimestamp (1, ts);
    stmt->setString (2, c2);
    stmt->executeUpdate ();
    cout << "insert - Success" << c1 << " " << f << endl;
    }catch(SQLException ex)
    cout<<"Exception thrown for insertBind"<<endl;
    cout<<"Error number: "<< ex.getErrorCode() << endl;
    cout<<ex.getMessage() << endl;
    I see the following output:
    insert - Success222 222
    The database table is as follows:
    SQL> desc author_ag
    Name Null? Type
    TS TIMESTAMP(3)
    AUTHOR_NAME VARCHAR2(25)

    My mistake. Didn't realize the fractional time had to be specified as NanoSeconds.

  • How do I insert the current date to hidden field?

    I have a form for updating personal information.  There is a field in the table called "dateupdated" that I would like to have on the form as a hiddent field that will automatically get the latest date (now).
    Any idea's how I can set the hiddden field to current date?
    Thanks,  Dennis

    You don't need a hidden field to do that. Depending on the database you're using, you can either use a TIMESTAMP column (in MySQL) that is automatically updated, or you can use a SQL function to insert the current date.
    For example, in PHP, you can use NOW() like this in a SQL query:
    $insertSQL = sprintf("INSERT INTO date_test (created, message) VALUES (NOW(), %s)",
                           GetSQLValueString($_POST['message'], "text"));

  • Need to validate the timestamp in sql

    Hi,
    I need to check whether the date column is having timestamp or not. Please give me the query to validate it.
    Eg
    row1 readtime
    1 1/28/2012 4:00:00 PM
    2 1/16/2012
    I need to vaidate and find the record which is not having the timestamp. Please help me in finding the query for this.
    If i use the to_char the value for the date which is not having the time is shown like this '16/01/2012 12:00:00 AM'.
    So kindly help me in finding the query for this.
    Thanks,
    Suresh P

    907893 wrote:
    Hi,
    I need to check whether the date column is having timestamp or not. Please give me the query to validate it.
    Eg
    row1 readtime
    1 1/28/2012 4:00:00 PM
    2 1/16/2012
    I need to vaidate and find the record which is not having the timestamp. Please help me in finding the query for this.
    If i use the to_char the value for the date which is not having the time is shown like this '16/01/2012 12:00:00 AM'.
    So kindly help me in finding the query for this.Predicting you are storing the data in a Varchar column, below suggestion should help:
    with data as
      select '26-Sep-2012 11:30:00' col from dual union all
      select '26-Sep-2012 11:30:00 AM' col from dual union all
      select '26-01-2012 11:30:00' col from dual union all
      select '26-SEPTEMBER-12 11:30:00' col from dual union all
      select '26-Sep-2012' col from dual
    select *
      from data
    where not regexp_like(col, '[[:digit:]]{1,2}-([[:alpha:]]{1,9}|[[:digit:]]{1,2})-([[:digit:]]{2}|[[:digit:]]{4}) [[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2}');If you are using a Date or Timestamp column, it will always have a Time Component stored and you would not be required to perform additional checks.
    See below:
    drop table test_table;
    create table test_table
      col       timestamp
    insert into test_table values (to_timestamp('26-Sep-2012 11:30:00', 'DD-Mon-YYYY HH24:MI:SS'));
    insert into test_table values (to_timestamp('26-Sep-2012', 'DD-Mon-YYYY'));
    select *
      from test_table;
    COL                      
    26-SEP-12 11.30.00.000000000 AM
    26-SEP-12 12.00.00.000000000 AMEdited by: Purvesh K on Sep 26, 2012 11:47 AM

  • Is there a way to automatically insert the filename in the footer of a spreadsheet using iWork's numbers 3.2?

    Is there a way to automatically insert the filename of a spreadsheet into the footer when using iworks numbers 3.2?  iworks 09 had this feature and I can't find this feature in the new version of numbers.

    Hi rhyolite,
    In Numbers 3.x, The Print View and Layout View have gone (for now at least). Page Headers and Footers can only be reached under Menu > File > Print... to open Print Preview. Hover the cursor to reveal the Page Header and Footer fields.
    The only inserts that I can get to work in Print Preview are Page Number, Page Count and Date & Time. Filename is no longer in the Insert menu.
    Regards,
    Ian.

  • Changing of the timestamp in sender file adapter in archive mode

    Hi,
    I have a requirement where in I have to archive a file with timestamp different from that generated by XI.
    Please let me know if this can be done and if so how can we handle the changes to be made to the timestamp in the sender adapter in archive mode.
    regards,
    Srinivas.

    Srinivas,
    Option 1) Create a bat file..to run the perl script you call..
    Perl script..
    #!/usr/bin/perl -w
    print("Starter that you want to change: ");
    chomp($badex = <STDIN>);
    print("Starter that you want added: ");
    chomp($goodex = <STDIN>);
    foreach $file (<$badex*>){
        @fields = split(/$badex/,$file);
        $goodfile = ("$goodex" . "$fields[1]");
        rename("$file","$goodfile");
    Run that on the os
    That should fix it.........
    Option 2) On your local Machine create a java file..add this code to it
    public class Utils
         public static int Randomizer(){
              int randomInt = 0;
              randomInt = (int) (Math.random()*1000);
              return randomInt;
    public static void main(String[] args)
         Randomizer();
    save and compile..
    Create a bat file to add the number returned from the random to your targetFilename
    so it would be something like..
    mv oldFileName Newfilename+randomizer... and also get this command written to a file..helpful later on.........
    Hope that helps
    Regards
    Ravi Raman
    PS:Dont forget the points if helpful

  • How to insert the sysdate time into the database

    hi all,
    when i execute the following query,
    insert into table_name
    (date_field)
    values
    (to_date(sysdate, 'yyyy/mm/dd hh24:mi:ss'));
    The value is inserted as 08-02-12 12:00:00. In this query, it always stores the default time as 12 a.m.
    But i need to insert the original system time not the default one.
    please help me how to rectify it.

    I do not understand as to why you are using the to_date function on sysdate since sysdate is already in date format.
    If date_field is of the data type date, then the following dml should work.
    insert into table_name(date_field) values (sysdate);
    In case date_field is a varchar2 field and you want to store the date and time in a string format, then the following statement should work.
    insert into table_name (date_field)
    values (to_char(sysdate, 'yyyy/mm/dd hh24:mi:ss'));

  • Not able to retrieve and insert the value to Home_country filed in MDM

    Hi All,
    I am new to the JAVA API,
    I have creted one application in webdynpro using the JAVA API. I am able to search the data based on "Firstname" "Lastname" and "Email address".
    I need to basically two functionalities
    1) Search
    2) Insertion of new records
    *1) Search*__
    But searching based on the Country is not able to do it.
    we have two tables .
    1) Country table> Contains all the list of the country codes and County name.
    2) People table > Contains the country filed. So for this filed lookup table is country. also this country filed is drop down  not have opton edit in the MDM.
    I am sending the following used for searching the records based on the First Name and country.
    But based on the first name it is working fine but Country it is giving some code like "R100" "R12". It is not givng the actual name of the country.
    FieldSearchDimension sd1 = new FieldSearchDimension(fields[2].getId());
                   TextSearchConstraint sc1 = new TextSearchConstraint(First_Name,TextSearchConstraint.EQUALS);
                   sch.addSearchItem(sd1,sc1);          
    FieldSearchDimension sd4 = new FieldSearchDimension(fields[9].getId());
                   TextSearchConstraint sc4 = new TextSearchConstraint(Home_Country,TextSearchConstraint.EQUALS);
    //               TextSearchConstraint sc4 = new TextSearchConstraint("IN",TextSearchConstraint.EQUALS);
                   sch.addSearchItem(sd4,sc4);
    cmd = new RetrieveLimitedRecordsCommand(connections);
                   cmd.setResultDefinition(rdPeople);
                   cmd.setSearch(sch);
                   cmd.setSession(sessionId);
    try
                        cmd.execute();
                        catch(CommandException e)
                             e.printStackTrace();
                        recs = cmd.getRecords();
                        wdContext.nodeResult_Table().invalidate();
    //retreiving the Data from the resultset
    if(recs.getCount()!=0)
      for(int i=0;i<recs.getCount();i++)
           //First Name
         IResult_TableElement resEle=wdContext.nodeResult_Table().createResult_TableElement();
         if(!(recs.getRecord(i).getFieldValue(fields[0].getId()).isNull()))
         //wdComponentAPI.getMessageManager().reportSuccess("Network Id-->"+recs.getRecord(i).getFieldValue(fields[0].getId()).toString());
         resEle.setNetwork_ID(recs.getRecord(i).getFieldValue(fields[0].getId()).toString());
           //Country
          if(!(recs.getRecord(i).getFieldValue(fields[9].getId()).isNull()))
         resEle.setDisplay_Name(recs.getRecord(i).getFieldValue(fields[9].getId()).toString());
         wdContext.nodeResult_Table().addElement(i,resEle);
    By the above field is not giving the respective country name is avilable. it is giving some value"R100" rather giving of India.
    _ 2)  For creating the record in the  "people" table._
    I am able to insert the data all the information "firstname" "Last name", "email" except "Country" entered by the user by using the following code.
    //Insert
    First_Name=wdContext.currentPersonal_DetailsElement().getAttributeAsText("First_Name");
         Last_Name=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Last_Name");
         Middle_Name_or_Initial=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Middle_Name_or_Initial");
         Home_Country=wdContext.currentPersonal_DetailsElement().getAttributeAsText("Home_Country");
    CreateRecordCommand createRecordCommand =new CreateRecordCommand(connections);
         Record r1 = RecordFactory.createEmptyRecord(tables[0].getId());     
         try
    //               Retrieve Lookup Field Properties, when Field Properties is given as input.
    //           LookupFieldProperties lookupField = (LookupFieldProperties) fields[9];          
    ////     Retrieve Lookup Field Properties, when Field Properties is given as input.
    //           LookupFieldProperties lookupFieldSer = (LookupFieldProperties) fieldProp;
    //          //setting the values for firstname and lastname
            r1.setFieldValue(fields[0].getId(),new StringValue(Network_ID));
            r1.setFieldValue(fields[2].getId(),new StringValue(First_Name));
            r1.setFieldValue(fields[3].getId(),new StringValue(Last_Name));
    r1.serFieldValue(FieldValue(fields[9].getId(), new Stringvalue(Home_country));
            createRecordCommand.setSession(sessionId);
            createRecordCommand.setRecord(r1);
         try {
              createRecordCommand.execute();
          } catch (CommandException e2) {
    Let me know what are the changes need to be done for inserting the country information in people table.

    Hi Greg,
    Thanks for the reply,
    Actually,I  was doing the same thing what  you suggested. I am sending the piece of code . Can look it it .Is any thing wrong.
              //inserting the Country lookup filed to record object.
    *       if(Home_Country.length()!=0)*
    *     /when pass the int position number for the country by retreiving from the country table it is working fine. But we      cannot depend on position. Because People table internally refering the other db table while inserting the country      filed in the People table./     *
    *          r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId(12)));*
    *     //When i PAss the String to the following function i am getting the unsupportedFormat Exception          *
    *          r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId("Australia")));*
    InCountry . They have defined only two columns called.
    1) ISO-2 Code
    2) Country Name.
    Sample data
    ISO-2 Code  |   Country Name
    US                    United StatesOf America
    AU                    Australia
    Ar                     Argentina
    Like the above data we have 250 country names
    So , I displaying all the country list in my interface and holding in the Array.
    Ex: When the user chooses the Australia.  When I pass directly as an "Australia" to
    r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId("Australia"))).  it is giving me error.
    Then i try to pass the postion of the"Australia" in country table. Like if the Austrila is an 2 record. I am looping through my array and find the record position as "2".
    I am passing as
    r1.setFieldValue(fields[9].getId(),new LookupValue(new RecordId(2)));
    It is inserting into the people database. But not an Australia. It is inserting as "Argentina".
    When the record inserting in people table refering some table at the database level , that table called "A2i_16_TEXT" This contains three columns.
    A2i_16_TEXT(columns)
    1) Id
    2) LangId
    2) Field Id
    4) TextField
    Example Data
    Id  |  LangId  |  Textfield
    3       0            Australia
    2       0            Argentina
    4       0            United States Of America
    As i am showing the above table for "Argentina" Id is "2". When i pass the 2 for inserting the country filed.Instead of inserting "Australia". It is inserting the "Argentina" by refering this table.
    Through MDM API we are not able to access this " A2i_16_TEXT"  table. Because it is maintaining at the db level to find the perticular id for the respective country before inserting in to the people table.
    So kindly suggest me how to solve this problem. What i am doing in the code is correct or not.
    Regards
    Vijay

  • How to insert the data which is present in the variable into the table

    Hi,
    Let's consider that I have one table and I have stored the table column names in one variable and their values in another variable.
    I want to insert the data that is present in the variables into the table.
    I tried the following way :
    Declare
    V_columns    Varchar2(50) := 'Empno';
    V_values       Number(10) := 101;
    Begin
    Insert Into Emp (V_columns) Values (V_values);
    End;
    The above procedure gives an error : PL?SQL : ORA-00904 : "V_COLUMNS": invalid identifier
    Using the Execute Immediate, we can insert the data which is present in the variables into the table.
    Is there any other way to insert the data which is present in the variable into the table..?
    Can anyone please give me the solution..?
    Thanks..

    plz use this...
    DECLARE
       v_columns   VARCHAR2 (50) := 'Empno';
       v_values    NUMBER (10)   := 101;
    BEGIN
       EXECUTE IMMEDIATE    'Insert Into Emp ('
                         || v_columns
                         || ') Values ('
                         || v_values
                         || ')';
       COMMIT;
    END;

  • TS1424 I have bought a book from iBook and even though my gredit card was charged immediately and the book was downloaded the first 12 chapters are not there! It says there is an error ... and the book starts at chapter 13. What do I do? Where do I compla

    I have bought a book from iBook. My credit card was charged and the book was downloaded. There is an error and the first 12 chapters are not there! The book has the prologue and info and then chapter thirteen. How do I get the whole book?

    I have bought a book from iBook. My credit card was charged and the book was downloaded. There is an error and the first 12 chapters are not there! The book has the prologue and info and then chapter thirteen. How do I get the whole book?

  • SharePoint List Form using InfoPath 2010 "Cannot insert the value NULL into column 'tp_DocId', table 'Content_SP_00003.dbo.AllUserData'; column does not allow nulls"

    I am experiencing issue with my SharePoint site , when I am trying to add new Item in List . Error given below :--> 02/03/2015 08:23:36.13 w3wp.exe (0x2E04) 0x07E8 SharePoint Server Logging Correlation Data 9gc5 Verbose Thread change; resetting trace
    level override to 0; resetting correlation to e2e9cddc-cf35-4bf8-b4f3-021dc91642da c66c2c17-faaf-4ff9-a414-303aa4b4726b e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015 08:23:36.13 w3wp.exe (0x2E04) 0x07E8 Document Management Server Document Management 52od
    Medium MetadataNavigationContext Page_InitComplete: No XsltListViewWebPart was found on this page[/sites/00003/Lists/PM%20Project%20Status/NewForm.aspx?RootFolder=&IsDlg=1]. Hiding key filters and downgrading tree functionality to legacy ListViewWebPart(v3)
    level for this list. e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015 08:23:36.17 w3wp.exe (0x1B94) 0x1A0C SharePoint Server Logging Correlation Data 77a3 Verbose Starting correlation. b4d14aec-5bd4-4fb1-b1e3-589ba337b111 02/03/2015 08:23:36.17 w3wp.exe (0x1B94)
    0x1A0C SharePoint Server Logging Correlation Data 77a3 Verbose Ending correlation. b4d14aec-5bd4-4fb1-b1e3-589ba337b111 02/03/2015 08:23:36.31 w3wp.exe (0x2E04) 0x07E8 SharePoint Foundation Database 880i High System.Data.SqlClient.SqlException: Cannot insert
    the value NULL into column 'tp_DocId', table 'Content_SP_00003.dbo.AllUserData'; column does not allow nulls. INSERT fails. The statement has been terminated. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at
    System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject
    stateObj) at System.Data.SqlClient.SqlDataReader.ConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavi... e2e9cddc-cf35-4bf8-b4f3-021dc91642da 02/03/2015
    08:23:36.31* w3wp.exe (0x2E04) 0x07E8 SharePoint Foundation Database 880i High ...or runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream,
    Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior,
    RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand
    command, CommandBehavior behavior,

    Are you trying to setup P2P? Could you explain the process you followed completely? By anychance you create the backup and then created the publication?
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • This is my first mac, it is a macbook pro. i restarted it but when it started back up i saw a white screen and then it prompted me to insert the reboot disk. anyone else have this problem?

    I recently bought a Macbook Pro, this is my first Mac. I restarted it, but when it started back there was a plain white screen and then it prompted me to insert the reboot disk. Has anyone else had this problem and is there a way to do this manually like with PC's?

    The new Mac's came with OS X Lion 10.7 and there are no boot disks.
    Since it's so new, take it back to the Apple Store and let them deal with it.
    If not you can hold Command and r (as in rotten) keys down and boot the computer.
    You'll be presented with a several options, including one to reinstall OS X Lion provided you have a Apple ID, which means you have to use Safari in there to set one up. To do that you need to set up a email account with Google or Yahoo. Once you get the ID, then you can download Lion and reinstall it.
    It's so stupid not having a copy of the OS on hand to perform your own repairs.
    Of course Apple will be happy to sell you a $69 Lion USB stick.
    Like I said, take it back to the store, and try to get your money back, that will force them to think about just giving you a replacement machine that works.
    Lion doesn't work really but it can be acceptable until the patches get released.

  • Parameters in Url..how do I use login information to insert the primary key

    Uggg, it is 3 am, I am so tired. Please help.
    I have made a registration page for my site. Hurray it works.
    Login Page. It works
    Protected some pages. Works
    Now I am trying to make a page that the users can go to and update their user information. User name, password, email ect.
    I can get it to prepopulate if I put ?id=3, or someother primary key in the url by hand.....and it does update the data.... but I can't, for the life of me, figure out how to make it use the users login information to get and insert the primary key in the url from the link to the update page.
    I have used the hyperlink box and chose the updateaccount.php file, then went to parameters and selected Name: id Value: I chose id from the dropdown from the data base. This puts in an echo that looks like it should work. NO SUCH LUCK.
    Pleeeese!!! What am I doing wrong.
    I am a total novice. Done a few static sites. So please speak slowly.
    Thanks sooooo much

    I really can´t recommend exposing critical stuff like e.g. the user´s login_id in the URL, because once it´s visible, it can be changed by anyone. Better insert the Session Variable kt_login_id, which will only be availabe on a custom PHP page when inserting...
    <?php session_start(); ?>
    ...on line 1 of this document.
    Cheers,
    Günter

  • How do I remove the cover to access the back of my 5c and insert the sim

    How do I remove the cover of my 5c in order to access the back of the phone to insert the sim?

    You DON'T remove the cover to access and insert the sim card in the the phone.
    The sim card tray on an iPhone is either at the top of the phone or on the side of the phone - just look at the top and then use the sim card tool that came with your phone and this will open the sim card tray.  You have no need to take the back off your phone whatsoever and has already been pointed out, if you do so, you warranty is voided, as the casing of iPhones are NOT designed to be removed.

  • How can I insert the mysterious iPod Atom to make a movie iPod friendly?

    Hello. I've been looking for an answer to this problem all over the Internet and haven't found anything! An Quicktime GURU out there?
    THE PROBLEM:
    I have several mp4 video files that iTunes won't sync to my iPod. They play well on QT, FrontRow and iTunes but then iTunes says "This video cannot be played on this iPod".
    Yes! you know that message too...
    We all have gotten that message before, even when we know the video will play perfectly on the iPod because it was encoded on H.264, AAC, etc, etc...
    Doing a little research I came to the fact that the problem is that these videos are missing an "iPod Atom Tag" which tells iTunes that the video can actually be played on the iPod. Seems quite simple but wait, there is a catch...
    Nobody knows how to insert this iPod Atom in the mp4 file!!!
    I found a nice UNIX app called AtomicParsley which let's you edit these tags but then I'm missing the important information... The iPod Tag code and the value which is supposed to be set to...
    THE QUESTIONS:
    Does anyone here has any idea on how to push the iPod Atom inside the mp4 file? Will AtomicParsley do the job?
    Which is the code of the iPod Atom? Is it uuid?
    Which value should I assign to it?
    Is there anything else I have to do to the files to make them iPod friendly?
    Most people would say that the easiest way is to use Quicktime Pro to re-encode the files but then the files grow in size, they loose some quality and features and not to mention that it takes forever to re-encode them again...
    I believe that this app, AtomicParsley can do the job if I know which tags to modify and the values I should set them to but that's the information I'm missing...
    I would really appreciate if someone can point me into the right direction and give me a little help with this matter. Thank you very much!
    Alejandro Cordero
    Costa Rica.

    I appreciate your comment but I guess you didn't exactly understand my problem...
    Handbrake is a program that extracts the video from DVDs and encode it into a movie file, usually mp4 files like the ones I need to fix. It won't work with movie files that you already have on your computer.
    Here is the deal again:
    1 - I have mp4 files in my HD. I am not encoding from my DVDs.
    2 - AtomicParsley is a program that can insert atoms in an mp4 file and it only takes a few seconds to do it and the movie itself remains untouched. I believe this tool will work fine but...
    3 - I just need to know what to tell to AtomicParsley. That is the iPod Atom code which I think is "uuid" and the value it must have which I really have no idea... :P
    Using this tool will insert the atom in a few seconds so I don't have to re-encode everything from scratch. Each encoding takes a few hours for a whole movie. Why spend many many hours re-encoding when you can solve the problem in a few minutes...
    Again, thank you for your comment. I'll keep waiting for an answer and keep the re-encoding option as a last resource.
    Alec.

Maybe you are looking for