GREAT for the Conversion of DV - AVI...

(Steve), I use SUPER from eRightSoft for AV to DV - AVI conversion (a freeware application very kool).

Conversion on a Mpeg2/to/DV-AVI file, I use the following attributes:

Output container ~ avi

Video codec ~ digital video DV

Audio codec ~ mp3

(I take the default values on all other options)

Convert AVI is very, very rough, audio is fine.

Keep the container to AVI, I try different video codecs without success.

I am sure that the source file is OK (WMM converts very well), but I love GREAT cause it made for much smaller output files.

Any ideas are appreciated...

I thought Super only converted to DV - AVI NTSC PAL not. This is probably your problem.

Tags: Premiere

Similar Questions

  • A design of query for the conversion of time difference in days, hours, Minutes

    Hi all

    A design of query for the conversion of time difference of time in number of days remaining remaining hours minutes and rest in seconds. Made this one till now. Please suggest for all modifications, until now, it seems to work very well, kindly highlight for any anomaly.

    WITH DATA (startDAte, EndDate, Datediff) AS (SELECT to_date ('2015-10-01 10:00:59 ',' yyyy-mm-dd hh24:mi:ss'), to_date ('2015-20-01 03:00:49 ',' yyyy-mm-dd hh24:mi:ss'), to_date('2015-10-01 10:00','yyyy-dd-mm hh24:mi:ss')-to_date('2015-20-01 03:00','yyyy-dd-mm hh24:mi:ss') FROM dual)

    UNION ALL SELECT to_date ('2015-10-01 10:00:39 ',' yyyy-mm-dd hh24:mi:ss'), to_date ('2015-20-01 03:00:40 ',' yyyy-mm-dd hh24:mi:ss'), to_date('2015-10-01 10:00','yyyy-dd-mm hh24:mi:ss')-to_date('2015-20-01 03:00','yyyy-dd-mm hh24:mi:ss') FROM dual

    UNION ALL SELECT to_date ('2015-11-01 10:30:45 ',' yyyy-mm-dd hh24:mi:ss'), to_date ('2015-11-01 11:00:50 ',' yyyy-mm-dd hh24:mi:ss'), to_date('2015-11-01 10:30','yyyy-dd-mm hh24:mi:ss')-to_date ('2015-11-01 11:00 ',' yyyy-mm-dd hh24:mi:ss') FROM dual

    UNION ALL SELECT to_date ('2015-11-01 09:00:50 ',' yyyy-mm-dd hh24:mi:ss'), to_date ('2015-11-01 10:00:59 ',' yyyy-mm-dd hh24:mi:ss'), to_date('2015-11-01 09:00','yyyy-dd-mm hh24:mi:ss')-to_date ('2015-11-01 10:00 ',' yyyy-mm-dd hh24:mi:ss') FROM dual

    UNION ALL SELECT to_date ('2015-11-01 08:30:49 ',' yyyy-mm-dd hh24:mi:ss'), to_date ('2015-11-01 09:30:59 ',' yyyy-mm-dd hh24:mi:ss'), to_date('2015-11-01 08:30','yyyy-dd-mm hh24:mi:ss')-to_date('2015-11-01 09:30','yyyy-dd-mm hh24:mi:ss') FROM dual

    )

    Select

    trunc ((EndDate-StartDate)) days.

    trunc (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24) hours)

    trunc (to_number (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24-trunc (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24)) * 60) Minutes,))

    (to_number (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24-trunc (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24)) * 60 - trunc (to_number (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24-trunc (((enddate-startdate)-to_number (trunc ((enddate-startdate))) * 24)) * 60)) * 60 seconds))))

    data;

    Thanks for the answers in advance.

    AHA!

    TO_TIMESTAMP expects a string as input, so it first makes an implicit conversion from DATE to a string, in the format of NSL_DATE_FORMAT.

    To convert the TIMESTAMP DATE independently NLS_DATE_FORMAT, use

    CAST ( AS TIMESTAMP)

  • Script for the conversion of the hyperlinks to the buttons?

    Hello!

    Does anyone know if West a script for the conversion of the hyperlinks to buttons with the action of going to the URL with the same URL, which has been used with hyperlink?

    Here it is:

    /* Copyright 2012, Kasyan Servetsky
    November 29, 2012
    Written by Kasyan Servetsky
    http://www.kasyan.ho.com.ua
    e-mail: [email protected] */
    //======================================================================================
    var scriptName = "Convert hyperlinks to buttons - 1.0";
    
    Main();
    
    //===================================== FUNCTIONS  ======================================
    function Main() {
        var hyperlink, source, sourceText, destination, page, arr, outlinedText, gb, button, behavior,
        barodeCount = 0,
        hypCount = 0;
        if (app.documents.length == 0) ErrorExit("Please open a document and try again.", true);
        var startTime = new Date();
    
        var doc = app.activeDocument;
        var layer = doc.layers.item("Buttons");
        var swatch = doc.swatches.item("RGB Yellow");
        var hyperlinks = doc.hyperlinks;
    
        var progressWin = new Window ("window", scriptName);
        progressBar = progressWin.add ("progressbar", undefined, 0, undefined);
        progressBar.preferredSize.width = 450;
        progressTxt = progressWin.add("statictext", undefined,  "Starting processing hyperlinks");
        progressTxt.preferredSize.width = 400;
        progressTxt.preferredSize.height = 30;
        progressTxt.alignment = "left";
        progressBar.maxvalue = hyperlinks.length;
        progressWin.show();
    
        for (var i = hyperlinks.length-1; i >= 0; i--) {
            hyperlink = hyperlinks[i];
            source = hyperlink.source;
            sourceText = source.sourceText;
            destination = hyperlink.destination;
            page = sourceText.parentTextFrames[0].parentPage;
    
            barodeCount++;
            progressBar.value = barodeCount;
            progressTxt.text = "Processing hyperlink " + hyperlink.name + " (Page - " + page.name + ")";
    
            arr = sourceText.createOutlines(false);
            outlinedText = arr[0];
            gb = outlinedText.geometricBounds;
            outlinedText.remove();
    
            button = page.buttons.add(layer, {geometricBounds: gb, name: hyperlink.name});
            button.fillColor = swatch;
            button.fillTint = 50;
            button.groups[0].transparencySettings.blendingSettings.blendMode = BlendMode.MULTIPLY;
            behavior = button.gotoURLBehaviors.add();
            behavior.url = destination.destinationURL;
    
            hyperlink.remove();
            source.remove();
    
            hypCount++;
        }
    
        var endTime = new Date();
        var duration = GetDuration(startTime, endTime);
        progressWin.close();
    
        alert("Finished. " + hypCount + " hyperlinks were convertted to buttons.\n(time elapsed: " + duration + ")", scriptName);
    
    }
    //--------------------------------------------------------------------------------------------------------------------------------------------------------
    function GetDuration(startTime, endTime) {
        var str;
        var duration = (endTime - startTime)/1000;
        duration = Math.round(duration);
        if (duration >= 60) {
            var minutes = Math.floor(duration/60);
            var seconds = duration - (minutes * 60);
            str = minutes + ((minutes != 1) ? " minutes, " :  " minute, ") + seconds + ((seconds != 1) ? " seconds" : " second");
            if (minutes >= 60) {
                var hours = Math.floor(minutes/60);
                minutes = minutes - (hours * 60);
                str = hours + ((hours != 1) ? " hours, " : " hour, ") + minutes + ((minutes != 1) ? " minutes, " :  " minute, ") + seconds + ((seconds != 1) ? " seconds" : " second");
            }
        }
        else {
            str = duration + ((duration != 1) ? " seconds" : " second");
        }
    
        return str;
    }
    //--------------------------------------------------------------------------------------------------------------------------------------------------------
    function ErrorExit(error, icon) {
        alert(error, scriptName, icon);
        exit();
    }
    
  • Documentation for the conversion of virtual and physical memory

    Are there any decent documentation for the conversion of virtual and physical memory?

    Any help would be appreciated.

    Yes I do, I'll send you my notes!

    Matthew

    Kaizen!

  • 'image' for the conversion of "photo".

    LabVIEW dear gurus,.

    I have a problem I would like to help with. I have a labview VI that creates an image using the entire block 'IMAQ image', and I a VI which allows the selection of image with the mouse. Most of the code for this second VI is an example. The problem is my photo VI selection requires that the image of the data type 'image', but the photos my other VI creates are the data type "image." CTRL-h wrote the first type of wire is 'image' and the second type of thread is "Image Dst Out (IMAQImage). I need either to convert the 'image' to 'image', or rewrite my photo selection to take in a variable "image" instead of "photo". I'm not particularly good at labview, I'm short on time, so conversion seems to be the best option. I found another thread that talks about the conversion of an 'image' in a table, but I do not know how to turn this table back into a 'picture '. Someone at - it ideas?

    Thank you
    sdt51

    Hi Daniel,.

    The VI I posted actually did the right thing, but I misnamed it.  Where did you see this VI?  I just created myself on my PC here.  Anyway, here's the same VI to 8.2.

  • What are the APIs used or tables of the interface used for the conversion of the Bank

    Hi all

    Please let me know if there is no table interface or api used to make the conversion of the Bank in r12.

    Thank you

    There is no interface for the Bank conversion table in r12, but you can use APIs such as: CE_BANK_PUB. CREATE_BANK, CE_BANK_PUB. CREATE_BANK_BRANCH, CE_BANK_PUB. CREATE_BANK_ACCT, ce_bank_pub.create_bank_acct_use etc...

  • Windows XP to be p2v. How to prepare for the conversion smooth?

    Windows XP-based installation (OS + software user + user data) must be transferred to the virtual machine. Fusion will be the EPS of the operation. of virtualized Win XP.

    Regarding the windows operating on real hardware what measures to take in order, the conversion is smooth and painless as possible?

    With the proprietary ATI - switch VGA drivers AGP ATI graphics card? If so, how?

    AGP port on SIS with SIS proprietary driver controller? Change standard? If so, how?

    Marvell NIC with pilot-owner? To disable, uninstall?

    It is not possible to remove the cause of driver SATA SIS that the OS is installed on the SATA drive behind controller SIS the SIS proprietary driver-controlled.

    Drivers of MS for ICH9M or similar have been injected for smooth conversion.

    Anything else?

    To remove the hidden shadows follow below device drivers

    Open a command prompt on the machine virtual from Windows (Start--> Run--> cmd).

    Set devmgr_show_nonpresent_devices = 1

    devmgmt.msc

    In the device management console (view--> show hidden devices).

    Uninstall devices that are no longer needed. As the old network devices.  They will appear as faded.

  • You can create a name of different default used for the conversion of lead?

    We use CRMOD for a high volume call center and we have a son with the same name. According to the online help, the first name and the last name for the lead appear"in the default opportunity name field." That works fine, but it would make our lives easier if he does something different, like maybe the first name, family name and POSTAL code, or first name, family name and a timestamp. Is it possible to do? I know that users might do something manually, but then I get all the associated problems.

    Shmonty, at the moment it is only the field of interest is produced. We do not expect to provide customization functionality to the conversion of lead in a next version On Demand.

  • Loading MS Word Documents for the Conversion DB Records?

    Here's what I'm working with...
    Oracle 10.2.0.3.x (w / cd installed companion)
    Fedora Core 7
    4 processors dual-core.
    16G RAM

    For a long time, our intranet has accepted uploaded word files and convert to PDF and each file associated with a db record that stores the location of the file on the disk, the name of the document, the owner and a few other details. The files are generally well formatted, each containing a line for the title, entry into force, author, owner, etc.

    We have reached a point where the PDF conversion is not work too well. In addition, our research via a google mini system returns obsolete files or which have not yet been published. Basically, we need a better solution.

    What I want to do is...
    1. use oracle text scan/load/import the word files,.
    2. use oracle text to analyze the word files identifying items such as the effective date, owner.
    3 load 2 results in a table that is searchable by oracle. I can use my intranet application to convert data to word or pdf or whatever the user needs.

    I'm here because I have a) do not know if this is possible, exactly b) how to go about the task.

    I would really like tips, pointers or links to useful documentation.
    Thank you.

    If this is the case,
    Step 1 - try to download the documents by using the following code

    http://snandan.blogspot.com/2007/07/how-to-insert-PDFDoc-files-into-table.html

    The above is indicated for the pdf file, but the same can be done for MS word too.

    Step 2 - create indexes of CONTEXT using AUTO_FILTER

    Step 3 - try which precedes for couple of documents and then perform a search using the keywords as TITLE, EFFECTIVE DATE etc.
    See the precision of the results, and then you can go further.

    The other part that I can think of - can be a bit complicated - but certainly much more efficient research and storage method will be.
    Once you save the file into the BLOB column - you can try to spend some time writing a small pl/sql script to read once more and obtain the necessary information like TITLE, EFFECTIVE DATE, etc, and store in the table.

    In fact we have implemented something like this before also

    We had PDFs like that.
    We inserted these pdf files in BLOB
    and had a sql script to extract the values you want and put it in a separate - intermediate table
    and once again - a perl script to set all of these properties and content in an XML document

    Now the advantage pf putting documents was felt when we had multiple queries running against them based on the properties and the content
    We used SURLABASEDESDONNEESDUFABRICANTDUBALLAST - 11g feature

    queries like

    text contains 'Insurance' and date > «»

  • Need help for the conversion of the nested loops to use the stream

    I'm trying to teach me how to effectively use the java stream, but finds it difficult to find the correct syntax for a problem of nested loop. I would like to convert the following code to use the Java 8 stream instead of nested loops.  Can anyone provide an example or a solution?

     /**
         * Return all members of stringListOne that begin with any of the strings in
         * stringListTwo
         *
         * @return all members of stringListOne that begin with any of the strings in
         * stringListTwo
         */
        Set<String> getFilteredStrings(Set<String> stringListOne, Set<String> stringListTwo) {
         
          Set<String> stringListOneFiltered = new HashSet<String>();
          for (String next : stringListOne) {
                for (String nextPrefix : stringListTwo) {
                    if (next.startsWith(nextPrefix)) {
                        stringListOneFiltered.add(next);
                    }
                }
            }
            return stringListOneFiltered;
        }
    

    Here's a test case for the above code:

    /**
         * Test method for {@link scratchpad.MyClass#getFilteredStrings(java.util.Set, java.util.Set)}.
         */
        @Test
        public final void testGetFilteredStrings() {
    
            MyClass uut = new MyClass();
            
            Set<String> stringListOne = new HashSet<String>();
            stringListOne.add("until");
            stringListOne.add("unite");
            stringListOne.add("under");
            stringListOne.add("prepare");
            stringListOne.add("pretend");
            stringListOne.add("prefix");
            stringListOne.add("prepend");
            stringListOne.add("post");
            stringListOne.add("positive");
            stringListOne.add("postgame");
            stringListOne.add("postpone");       
            
            Set<String> stringListTwo = new HashSet<String>();
            stringListTwo.add("post");
            stringListTwo.add("pre");
            stringListTwo.add("und");
            
            
            Set<String> result= uut.getFilteredStrings(stringListOne, stringListTwo);
            
            System.out.println(result);
            assertEquals(8, result.size());
        }
    

    Thanks for any help you can provide!  I get the hang of using the course of water, but this particular code was difficult.

    tmbc

    I found the following solution to my question:

    GetFilteredStrings (Set stringListOne, the value

    {Set stringListTwo)

    Predicate startsWith = p-> stringListTwo.stream () .anyMatch (prefix-> p.startsWith (prefix));

    Return stringListOne.stream () .filter (startsWith) .collect (Collectors.toSet ());

    }

  • Build SQL statements for the conversion error

    Hello

    I started a conversion after having dropped any object that has been marked blocking conversion (and refreshed + re-read the database).

    But the conversion fails with:

    DMU conversion error generating SQL.PNG

    Hello

    At the revealid of track that he was opening and closing of session trigger failed.

    I disabled the trigger, and now the conversion has kciked off as expected.

    Thank you.

    BR,

    Kim

  • Great for the background process paging space

    Hello
    in my former base 9.2 (on AIX) I see paging high use of space for background processes.
    #> svmon -Pg -t 1 |grep Pid ; svmon -Pg -t 10 |grep "N"
         Pid Command          Inuse      Pin     Pgsp  Virtual 64-bit Mthrd  16MB
     2285578 oracle          304609    81552   500909   605395      Y     N     N
     3350676 oracle          304588    81552   500643   605149      Y     N     N
     1794254 oracle          304592    81552   500634   605126      Y     N     N
     2744508 oracle          304567    81552   500189   604671      Y     N     N
     2588796 oracle          304700    81552   499905   604421      Y     N     N
      708788 oracle          304657    81552   499842   604336      Y     N     N
      598034 oracle          304621    81552   499696   604182      Y     N     N
     3035252 oracle          304666    81552   499662   604167      Y     N     N
     2736282 oracle          239031    81552   418381   522499      Y     N     N
     1220740 oracle          238960    81552   418310   522410      Y     N     N
    
    #> ps -eaf|grep 2285578
      ora9R2 2285578       1   0   Mar 01      -  0:28 ora_pmon_MYDB
    
    #> ps -eaf|grep 3350676
      ora9R2 3350676       1   0   Mar 01      -  0:34 ora_dbw0_MYDB
    
    #> ps -eaf|grep 1794254
      ora9R2 1794254       1   0   Mar 01      -  1:24 ora_ckpt_EGOV
    The database do nothing (from 09:00 to 17:00):
    Load Profile
    ~~~~~~~~~~~~                            Per Second       Per Transaction
                                       ---------------       ---------------
                      Redo size:                852.37             37,511.73
                  Logical reads:                 31.39              1,381.25
                  Block changes:                  3.35                147.35
                 Physical reads:                  0.09                  3.96
                Physical writes:                  0.16                  6.89
                     User calls:                  2.24                 98.51
                         Parses:                  1.33                 58.34
                    Hard parses:                  0.10                  4.27
                          Sorts:                  0.63                 27.93
                         Logons:                  0.01                  0.61
                       Executes:                  2.07                 91.04
                   Transactions:                  0.02
    But the free bolt is 40%:
    Top 5 Timed Events
    ~~~~~~~~~~~~~~~~~~                                                     % Total
    Event                                               Waits    Time (s) Ela Time
    -------------------------------------------- ------------ ----------- --------
    latch free                                          1,580          88    42.63
    File system mount options are correct (cio of dbf, etc.)
    Parameter:
    filesystemio_options                 string      async
    disk_asynch_io                       boolean     TRUE
    optimizer_mode                       string      RULE
    Any ideas why it uses a lot of paging space?
    Thank you.

    Mr.D. says:

    sb92075 wrote:

    Mr.D. says:
    Hello
    in my former base 9.2 (on AIX) I see paging high use of space for background processes.

    What value will the use of paging to be OK to be 'high '?
    Is this true & valid value for EACH database on this planet?

    Do you realize that the modern BONES are actually DESIGNED for the page?
    So why is that a bad thing, report you it?

    Yes I realize
    But if topas show me about 20% wait for I/O and the affected hdisk is the swap and it is occupied about 97 to 100%
    I think that there is a problem.

    Thank you.
    >
    >
    >

    Hello
    in my former base 9.2 (on AIX) I see paging high use of space for background processes.

    What value will the use of paging to be OK to be 'high '?
    Is this true & valid value for EACH database on this planet?

    Do you realize that the modern BONES are actually DESIGNED for the page?
    So why is that a bad thing, report you it?
    Yes I realize
    But if topas show me about 20% wait for I/O and the affected hdisk is the swap and it is occupied about 97 to 100%
    I think that there is a problem.

    Thank you.
    If the OS is really trading & Oracle is only application on the server system, then SGA is too big.

  • Convert PDFs using Document Cloud is blocked by proxy.  Please provide the URLS to ignore the proxy for the conversion

    I've already included *. Adobe.com*, but this does not solve the problem.  If I disable the proxy, there are no conversion issues.  The error I get with proxy is error contacting server.

    EDIT: Just for clarification, we use a proxy.pac file

    As you've identified, your proxy is the problem. Only you can provide the fix.

    Be well...

  • Preservation of sharpness of the text in the bitmap for the conversion of SWF?

    I do a lot of conversion turning PDF pages in SWF files. The text must remain net as possible and images must look very good. We have proprietary software on a server that can do it fairly well, but takes a while. I used Flash Professional CC for 2014 do with only fair results. This is the best procedure, I tried so far:

    Save the page PDF to TIFF 600 dpi. Open in GIMP or Photoshop and resize to twice the size of my SWF pixel desired, change the dpi to 300 and a PNG output. Open flash, create a new Actionscript 3, size of the stage to the pixel dimensions of the SWF file desired, drag the PNG on stage and resize again to the pixel dimensions you want. Save the FLA file, make sure that the post parameter has JPEG quality to 100 and the output SWF file.

    But I still see the text in the SWF file that is not as strong as what our server creates, and the IT guys are all on other tasks, so I can't ask them how the server was put in place.  Shouldn't be able to have the same control in Flash?

    import a bitmap in flash > place on stage > click Modify > bitmap > trace bitmap > experimenting with settings until you get the quality/file size that meets your needs.

    the resulting vector image should be resized without aliases problem.

  • All possible means for the conversion of P2V Windows 2008 R2 (even with workaround solutions?)

    We have several production servers, that we have recently upgraded to Windows 2008 R2, only to discover after the fact that VMWare Converter currently does not support convert a physical machine to a VMWare image. The servers are actually images of Hyper-V, but since there is no way to convert the computer virtual Hyper-V to VMWare, we have always used the P2V conversion with our Windows 2008 Server (not R2) without problem.

    Its imperative that we find a way to do this and I was hoping to see if anyone has found any workaround for this problem.

    We would prefer not to have to buy another product for that (i.e. using Acronis or Symantec Backup), as one would expect VMWare to support it eventually (even if it is the only option, we will have to examine it). We simply need a workaround solution for us until they do.

    Thanks a bunch!

    Hello.

    Have you tried the StarWind V2V Converterfree?

    Good luck!

Maybe you are looking for