Save as Using Passthrough?

When using "Save as" with the self-contained movie option, does QuickTime simply passthrough the audio and video tracks to a mov container or is it re-encoding the tracks while moving them to the mov container?
I have an mkv video with an h.264 video track and ac-3 audio track. When I use "Save as" self-contained movie, it works perfectly. The mov file it produces has the h.264 and ac-3 tracks like the mkv did.
I would like to know if it passed through the original tracks from the mkv unaltered or did it re-encode them?
Thanks
P.S. - Yes, I'm using Perian to handle mkv files in QuickTime.

I would like to know if it passed through the original tracks from the mkv unaltered or did it re-encode them
The data tracks are simply copied from one container to the other. No re-compression is performed.

Similar Messages

  • How to capture an image and save it using action script

    Hello,
    I need to know if is posible to capture an image or a screen region and save it using action scrip.
    Somebody know how to do it ??
    Thanks

    you can capture an image using the bitmapdata class and getPixel().  you can then save that to a bitmap using server-side code like php.

  • My Adobe Illustrator is CS6 and it corrupts the file if I save it using accents

    My Adobe Illustrator is CS6 and it corrupts the file if I save it using accents. How do I fix this?
    I mean, if I save a file called "crachá" I'm using an accent on "a" so it showed as "á" but if I do this Illustrator says the following error:
    "The file may be read-only, or another user may have it open. Please save the document with a different name or in a different foulder"
    and when I try to open it says:
    "The file "Crachá.ai" is in an unknown format and cannot be opened."
    So, my solution is to create a new file and call it "Cracha", without the accent. But it never happened before. How can I fix this legitimately?
    Thanks.

    As for the resolution problem: upsampling an image doesn't improve its quality, because there's simply not enough information there.
    As for the warning you get: it's most likely caused by RGB color mode or by placed RGB content that interacts with other content in the file (e.g. because you applied transparency)
    In English it's this one:
    As far as I see it there's no alternative to learning the basics of printing, color management and transparency. This is nothing that can be done by some forum posts.
    Printing:
    http://rufus.deuchler.net/2011/06/adobe-publishes-a-new-creative-suite-555-printing-guide. html
    You need to understand what's happening on conversion of RGB to CMYK color space, which will happen when printing to offset presses. When you print on office printers, something else happens and all kinds of color may come out, because these machines sometimes do their own color correction and everything depends on how you set up the machine.
    Provided you check the PDF in Acrobat: you need to set up color management there as well. This might lead to the differences (greenish) you're seeing.
    Find a good book on color management and read the manual:
    Creative Suite * Understanding color management (there's more about the subject)
    As for transparency:
    http://partners.adobe.com/public/asn/en/print_resource_center/Transparency-DesignGuide.pdf
    http://partners.adobe.com/public/asn/en/print_resource_center/TXPGuide.pdf
    Before sending files to a print service provider you need to get information on how they need the file. Most providers won't accept PDFs generated with "No color conversion". Or they won't guarantee for the output.
    What you see on your monitor won't necessarily match the printed result unless your system is correctly calibrated and color management set up. And even then there might be differences.
    Can't you contact this former colleague, pay him an amount of money and let him teach you the tools of the trade?

  • Error while Open and save pdf using Adobe library

    I m using adobe library to open and save PDF using VC++ MFC .
    as given samples are working for me all are using console application to accomplish this task.
    But when i tried to use same functions to open and save PDF from DOC/VIEW application it gives me an error.
    it is a strange problem that I don't understand. If I compile the following code (Visual C++ 2000 Express Edition) I get an error message: "Unhandled exception at 0x0041183f in test.exe: 0xC0000005: Access violation reading location 0x00000004."
    For your reference when I simply  create one function and one menu and called that function from menu.
    Please see the code is given below.
    The code is given below
    void CPDF_MFCDoc::OnPdfOpen()
        // TODO: Add your command handler code here
        OpenPDF();
    #define PDF_FNAME1  "C:/Test.pdf"
    void OpenPDF()
         PDDoc pdDoc= NULL;
         ASErrorCode errCode = 0;
         DURING
            pdDoc1 = MyPDDocOpen(PDF_FNAME1);
        HANDLER
            errCode = ERRORCODE;
        END_HANDLER
    It gives me an error as.
    Unhandled exception at 0x004075b1 in PDF_MFC.exe: 0xC0000005: Access violation reading location 0x00000024.
    But when same thing I was complied from console ,it works.
    Working code is given below.
    #define PDF_FNAME1  "C:/Test.pdf"
    void MainProc(int argc, char **argv )
         PDDoc pdDoc= NULL,
         ASErrorCode errCode = 0;
         DURING
                 pdDoc1 = MyPDDocOpen(PDF_FNAME1);
         HANDLER
            errCode = ERRORCODE;
        END_HANDLER
    PDDoc MyPDDocOpen(char *fileName)
        ASFileSys asFileSys = ASGetDefaultFileSys();
        volatile ASPathName asPathName    = NULL;
        volatile PDDoc        pdDoc        = NULL;
        DURING
            /* Create asPathName from file.*/
            #if MAC_PLATFORM
            asPathName = GetMacPath(fileName);
            #else
            asPathName = ASFileSysCreatePathName(asFileSys, ASAtomFromString("Cstring"), fileName, 0);
            #endif
            /* Open pdDoc from asPathName.*/
            pdDoc = PDDocOpen(asPathName, NULL, NULL, true);
            fprintf(stdout, "Successfully opened %s\n", fileName);
        HANDLER
            fprintf(stderr, "Unable to open %s\n", fileName);
            pdDoc = NULL;
        END_HANDLER
        /* Release asPathName.*/
        if (asPathName)
            ASFileSysReleasePath(asFileSys, asPathName);
        return pdDoc;

    Yes ,I have it , I think when i tried to open or save any document "ASGetDefaultFileSys()" function not able to get file it raise an error , can you please help me out . where I m wrong.
    Why this "ASGetDefaultFileSys()" function raise as "Access violation error" .
    Please help me.

  • The dropdown "Do you want Firefox to save password" used to hide and now doesn't. Why?

    The dropdown "Do you want Firefox to save password" used to hide and now doesn't. Why?
    == This happened ==
    Every time Firefox opened
    == A few weeks ago

    The dropdown "Do you want Firefox to save password" used to hide and now doesn't. Why?
    Appears to be hapenning after upgrade to 3.6.6
    My OS is Vista.

  • Is it save to use class variables in stateful application modules?

    I've a simple question of understanding: Can I savely use class-variables in stateful application modules?
    Consider the following example:
    public class myStateFullAppModuleImpl extends ApplicationModuleImpl
    private int myVar=0;
    public int doMyWork()
    myVar++;
    return myVar;
    Is it save to use "myVar" this way considering AM-pooling? Or should I save "myVar" in the session instead?
    Thanks

    Please see reply at:
    Is it save to use class variables in a stateful application module?

  • Is it save to use class variables in a stateful application module?

    I've a simple question of understanding: Can I savely use class-variables in stateful application modules?
    Consider the following example:
    public class myStateFullAppModuleImpl extends ApplicationModuleImpl
    private int myVar=0;
    public int doMyWork()
    myVar++;
    return myVar;
    Is it save to use "myVar" this way considering AM-pooling? Or should I save "myVar" in the session instead?
    Thanks

    Remainder of code:
                for (int i=0; i < length; i++)
                   org.w3c.dom.Node child = nl.item(i);
                   if (child != null && "jbo.counter".equals(child.getNodeName()))
                      getSession().getUserData().put(
                         "jbo.counter", child.getFirstChild().getNodeValue());
                      int counterInt = getCounterValue();
                      counterInt++;
                      getSession().getUserData().put(
                         "jbo.counter", String.valueOf(counterInt));
                      break;
          public void prepareSession(oracle.jbo.Session session)
             super.prepareSession(session);
             try
                int counterInt = getCounterValue();
                counterInt++;
                getSession().getUserData().put("jbo.counter", String.valueOf(counter
    Int));
             catch (Exception e)
                e.printStackTrace();
          public int getCounterValue()
             int counterInt = 0;
             try
                String counter = (String)getSession().getUserData().get("jbo.counter[i][pre]Long postings are being truncated to ~1 kB at this time.

  • Is it save to use ipad for internet banking

    Is it save to use ipad for internet banking?

    PeterArenot911 wrote:
    it is not as safe over 3G
    Why do you say that?  I thought an https connection over 3g is no less (or more) secure than an https connection over wifi or hardline connection?
    Personally, I never use web sites for financial transactions though on my mobile devices.  I prefer to use the bank or financial institutions own app (most seem to have one).  I know my bank's app uses strong encryption from the very initiation of the session.

  • Where can i save the use's data of external application?

    where can i save the use's data of external application?and whether will it accumulate to some synchronic problem?
    The way i am doing by is to save the information in providersession by initSession() of ProviderInstance,then to get the information back by using session.getAttribute(),which is in jsp. is it right?and what problem will be caused?
    so i want to know what is the standard method to use the information in external application to page.

    Hi Alf,
    Please have a look at the POINT portlets. most of them are based on external apps. That could give you a fair enough idea of how to go about with your designs.
    http://www.oracle.com/technology/products/ias/portal/point.html
    thanks,
    Harsha

  • How can I create a group email I can save and use again

    How can I created a group email to save and use again. I have an iPhone 4s.  ISO 8.2

    Olga, this is not a default feature in iPhone. You need a 3rd party application. I have created a free one, Easy Group, for group texting and group emailing.
    http://itunes.apple.com/fr/app/easy-group/id461469079?mt=8
    Rémi
    Note: I may receive some form of compensation, financial or otherwise,from my recommendation or link.

  • When i save files using CS6 files go white

    When I save files using CS6 and try to view them in other program (i.e. iPhoto, etc) the files show as a white box with no image. I'm using a Macbook Pro with Yosemite.

    Most likely you have "maximize compatibility" off, and are using applications that can only read the composite image (which requires maximize compatibility ON).

  • Save As dialog window disappears when trying to save or use pdf writer

    When I try to create a pdf using a pdf writer/printer, or even when i try to save a pdf file, the dialog box showing where to save it appears then immediately disappears before i can choose a name or location to save the pdf.  i have tried reinstalling the reader, reooting, reinstalling the pdf writer, nothing seems to work.

    I have tried multiple pdf writers including cutepdf and a proprietary pdf writer so I am pretty sure the problem lies within adobe reader.  Especially since the problem occurs when I just try to save the pdf and not use the writer.

  • I get the Save As dialog when trying to Save, whether using Command-S or File menu

    When trying to Save a document, I am presented with the Save As dialog. The file name has a serial number added  to the old file name and the default destination is the Documents file. This happens whether I have tried to save using Command-S or using the Save option in the File menu. This started after I upgraded to Mavericks.

    I checked and the files are not stationery pads, Permissions show me as having read and write authority.
    But, when I  opened the files from the finder, the problem disappears and they saved normally. I then removed the files from the Dock and re-placed them in the Dock via drag and drop. The problem re-appears and changes will not save normally. Not being able to use the Dock is inconvenient but at least there is a workaround. Thanks for your help! Before declaring victory, I'd like to watch it for a while for other quirks.

  • Problem with SaveAs function using random paths.

    The Setup:
    Part 1) I have a folder-level script that allows me to perform a SaveAs function from within forms. I do this as a way to save the document quietly in the background. The effect is that the file is overwritten by a copy of itself. The script is:
    var mySaveAs = app.trustedFunction( function(oDoc,cPath,cFlName)
        app.beginPriv();
        cPath = cPath.replace(/([^\/])$/, "$1/");
        try{
            oDoc.saveAs(cPath + cFlName);
        }catch(e){
            app.alert("Error During Save");
        app.endPriv();
    Part 2) From within my documents, I perform the save by calling the function below:
    function runSave()
    {if(typeof(mySaveAs) == "function") {
        var pathArray = this.path.split("/");
        var myFileName = pathArray[pathArray.length-1];
        var cPath = this.path.slice(0,myFileName);
        mySaveAs(this, cPath, myFileName);
    } else {
        app.alert("Missing Save Function\n" + "Please contact forms administrator");
    Part 3) I have several large forms that utilize an autosave to call the save function according to a time interval of 5 minutes, using:
    app.setInterval(runSave(), 300000);
    The Problem:
    Part 1) The autosave feature works fine and it works silently in the background. However, I start to experience problems when I have two forms open at the same time. If, for example, I have a form from one folder open, and open a form from a second folder, the save feature will sometimes save the active document to it's original folder (as intended, overwriting itself and creating an autosave) or sometimes save to the second document's original folder. This leaves me with an updated (autosaved) copy of the document in the wrong folder, and a non-updated copy in the original folder. This seems to vary depending on which document I opened last and/or which document is currently active. Though I can't seem to find the right combination.
    It's as thought the "this.path" is getting confused.
    Part 2) Worse still, if the two documents have the same name, as is often the case with these forms, any incorrect filing when saving causes an overwrite of the second document and loss of data.
    Part 3) To makes things maddening, this also happens at times when no second folder or second document is open. Instead, the misfiling saves the single, active document to a recently accessed folder. For example, I'll open a local folder and open a Word doc, close the doc and the folder, go to a different folder in a different root (a networked folder), open the form, and it autosaves to the local machine in the folder with the Word doc. So now not only do I have a non-updated copy in my correct folder, I have no idea where the updated copy was actually saved to until I come across it some time later.
    Part 4) Again, worse still, the previously accessed folder might happen to be one that contains a document with the same name, and that document gets overwritten by the autosave. I'll have no idea that the form has been overwritten until I happen to open it some time later and see that it contains data from a totally different form.
    What is going on and how do I stop it?
    Adobe Acrobat X Pro on a PC.

    Thank you, that is helpful to understand. I'd like to keep it as 3 parameters, as all my documents currently output 3 to the trusted function. And I'd still like to keep the error catch, but I'm not sure why the previous trusted function from the tutorial is no longer working, so I just want to run this by you:
    safeSaveAs = app.trustPropagatorFunction(function(theDoc,thePath,theFileName){
        app.beginPriv();
        var fullPath = (thePath + theFileName);  
        try {
            theDoc.saveAs({cPath:fullPath});
        } catch(e) {
            app.alert("Error During Save");
        app.endPriv();
    myTrustedSaveAs = app.trustedFunction(function(theDoc,thePath,theFileName){
            app.beginPriv();
            safeSaveAs(theDoc,thePath,theFileName);
            app.endPriv();

  • How Do I Create a Screen Saver That Uses Shared Photos??

    I have a pretty simple request here, or at least I think it should be pretty simple. My family uses a shared photo stream so that we can all see what everybody is up to without sending a bunch of individual messages.
    I'm going to use a screen saver that displays photos but the tricky part is...I'd like the family's shared stream to be the source for all the photos.
    Previously, I went into iPhoto and just selected all of the photos from the stream, dragged them into a desktop folder, and set this as the source for the screen saver. The only problem with this method is that whenever a new photo is added, it won't show up in the screen saver (obviously). That's why I'd like to set the shared photos as the source.
    Is there a simple way to do this and set the shared photos as the screen saver source??    I would even settle for doing the alternate method that I described in the last paragraph, but I can't even figure out how to do this with the new "Photos" app...
    PLEASE HELP!! Thanks in advance...
    Pete

    Pete, setting the screensaver is a matter of patience, the menus are very slow, if you just set up the system and the spotlight index has still to be recreated.
    But you should be able to it this way:
    Open the Desktop&Screensaver System preferences, select the Screensaver tab.
    In the left pane select a screensaver template for slideshows.
    In the right pane select the Source menu.
    Now wait and have a cup of coffee, while "Loading is showing"
    Then select the last item "Photo Library".
    Wait again, until your current photo libraries are shown.
    Select the Photos library,
    Select the Shared section and your shared family stream.
    Like this:
    -- Léonie

Maybe you are looking for

  • 2 Macs on APBS but only one at a time

    OK gang here it is. I just updated to the new APBS Extreme (Square one) from the spaceship one. Everything switched to the new station fine. I have 4 computers on the network. 2 PC's (1 Wireless G and 1 cabled desktop). 2 Macs. 1 Macbook Pro that is

  • Asset - GL Account

    Hi all, I am a SD consultant, but due to some reason i am now handling FI for time being..... The thing is my client wants to view asset quantities, but in AS02 / AS03 tcodes i was able to see the values and not the quantities. So i thought viewing t

  • COPA - upload R/3 hierarchy to the BW

    Hi, We have created user hierarchy in R/3 COPA (T-code KES3) for user characteristic WW002 (Country Ship to party). On the BW side there is a char. 0COUNTRY. I created DataSource in tr. KEB1 for WW002 and 0COUNTRY. The problem is that the hierarchy o

  • Convert to CMYK or Export PDF?

    I am putting together a big catalog project. In previous projects I converted all images to cmyk before ripping the pdf for final press print. Since the pdf export can convert to cmyk can I leave everything as is (RGB) and do the convert on export or

  • Strange and fatal file name / root folder problem. Please help!

    Hi there. I wonder if anybody could help me! I am using CS4 but this problem still occurred in CS3. When I set up a new site in Dreamweaver I go through the usual motions selecting the local root folder and images folder. Then when I go into the new