Where is this elusive DV-AVI Type II export setting?

Using PE4...
Recent threads on exporting parts of clips mention exporting to "DV-AVI Type II" and unchecking "Recompress" etc.  As far as I have found, I have three AVI options available via File - Export - Movie - Settings - General:
Uncompressed Microsoft AVI
Microsoft AVI
Microsoft DV-AVI
Under Video - Compressor (if this is the relevant place to look), the Uncompressed Microsoft AVI option offers 10-bit YUV... or 8-bit YUV..., and both the the Microsoft AVI and Microsoft DV-AVI option offer DV NTSC or DV PAL.
I've searched around the settings and can't find anything that says "Type II".  So am I missing something obvious?  Do I need to download a different Codec or something?  Which export settings do I use to export DV-AVI Type II as recommended?
Thanks for any help,
Dave

This is essentially the same thing we covered in your other thread, Dave. Type 2 is not a format. It's a type of AVI.In fact, it's the only type of AVI Premiere Elements outputs.
So you don't need to worry about that. All you need to worry about is the codec -- and the codec you want to use is DV, which should be the default output setting for AVIs from this program.
I've included more details and instructions on outputting DV-AVIs in your other thread.

Similar Messages

  • I have a client that uses Windows that has recently told me she can no longer open the PDFs I send her. I can't find this elusive "Always Send Windows-Friendly Attachments" setting that I have read may solve my problem. Can someone get me there?

    I have a client that uses Windows that has recently told me she can no longer open the PDFs I send her. I can't find this elusive "Always Send Windows-Friendly Attachments" setting that I have read may solve my problem. Can someone get me there?

    Dear Dan,
    It was from InDesign that I was creating the shared pdfs. I was one of two Mac drivers in a corporate sea of Win users and had to make the change I mentioned in order for the Win users to see my pdfs for review. The difference from what you appear to be doing was that were all on an MS Exchange Server so the files were shared over the company's Exchange Server e-mail system. However, some of these files occasionally went to outside users via regular e-mail and those people had no issues either.
    So what I did was tested and worked for years.
    You might look at the Adobe forums or Knowledge Base to see if that is a reported issue with newer version of CS. I was on CS2 when I was doing this, and the other Mac driver was on CS3 but had no problems either.
    Some Win users I've talked to find a problem opening some pdfs (not mine) in general and found they had to open Reader first and them open the file from Reader's File menu. That most often happened if the client was using an outdated version of Reader.

  • When typing a text message my iPhone 4 now speaks some of the words as I type.  Where did this feature come from and how do I turn it off?

    When typing a text message on my iPhone, a voice now speaks some of the words.  Where did this come from and how do I turn it off?

    You have VoiceOver turned on.  See p. 230... http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • PE 9.0 no sound with DV AVI type 2 clip, but sound is ok with Media Player and Power DVD

    PE 9.0 no sound with DV AVI type 2 clip, but sound is ok with Media Player and Power DVD

    Dear Bill,
    Thanks for helping me.
    G-Spot reports:
    Audio
    Codec: PCM Audio
    Info: 48000Hz 1536 kb/s tot (2 chnls)
    Video
    Codec: dvsd
    Name: DVC/DV Video
    Status Codec(s) are installed
    Len 2:36.960   Frms 3,924   kbps 28800   Qf 2.778
    Pics/s 25.000   Frames/s 25.000   Field/s 50.000
    I/L   BFF   PAL
    Pic (w x 720 x 576   seq ext 16:9
    Sar 1.250 (5:4)   par 1.422 (~10:7)   dar 1.778 (16:9)
    I have imported a WMA-file in Audio-1 track of PE – still no sound to hear. But I can see the sound in the track. (Like in my video-clip) Therefore I also think it is a setting in PE. Will you be so kind to tell me where I have to look? Because I am no expert. Or is it possible that I have to activate anything in PE? It is first time that I will work with PE 9.
    Further information: The original sound of the Mini-DVD is 5:1 surround. After first problem I have changed Nero to export in Stereo, but this did not solve the problem.
    Thanks and regards
    Werner

  • In "LOOP ... WHERE ..." the line type of the table must be statically defin

    Hi All,
            I have written the code, for greater than (GJAHR) 2007 and restricted company codes ( table name = ZGLCCODE).
         Here I have written the following the code which is giving an error
    In "LOOP ... WHERE ..." the line type of the table must be statically defin
    ZGLCCODE Contains only restricted company codes.
    Code is as follows
    TABLES : ZGLCCODE. 
    DATA : LT_DATAPACKAGE TYPE TABLE OF DTFIGL_4.
    DATA : LS_PACKAGE TYPE DTFIGL_4.
    TYPES: BEGIN OF LS_TZGLCCODE,
           ZBUKRS type BUKRS,
            END OF LS_TZGLCCODE.
    DATA : LT_ITZGLCCODE TYPE LS_TZGLCCODE OCCURS 0 WITH HEADER LINE.
    DATA : LI_NUM TYPE I,
           LC_ZGJAHR TYPE BSEG-GJAHR VALUE '2007'.
    SELECT ZBUKRS INTO TABLE LT_ITZGLCCODE FROM ZGLCCODE.
    Note:  "C_T_DATA" dynamic structure = "DTFIGL_4" structure
    *-  Remove from the DataSource Company Code -
    LOOP AT C_T_DATA INTO LS_PACKAGE WHERE GJAHR GE '2007'.
    READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = LS_PACKAGE-BUKRS.
    IF SY-SUBRC <> 0.
       APPEND LS_PACKAGE TO LT_DATAPACKAGE.
    ENDIF.
      CLEAR LS_PACKAGE.
    ENDLOOP.
    IF LT_DATAPACKAGE[] IS NOT INITIAL.
    DESCRIBE TABLE LT_DATAPACKAGE LINES LI_NUM.
    IF LI_NUM GT 0.
       REFRESH C_T_DATA.
       APPEND LINES OF LT_DATAPACKAGE TO C_T_DATA.
       REFRESH LT_DATAPACKAGE.
       FREE LT_DATAPACKAGE.
    endif.
    ELSE.
       REFRESH C_T_DATA.
    ENDIF.
    Please give me your valuable suggestions.
    Thanks
    Ganesh Reddy.

    Hi Ganesh,
    whatever you do, you can try like this:
    1 - any code posted should be wrapped in \
    then try something like this:
    field-symbols:
      <tabrec> type any,
      <field>   type any.
    sort ITZGLCCODE by bukrs.
    LOOP AT C_T_DATA ASSIGNING <tabrec>.
      ASSIGN component 'GJAHR' of structure <tabrec> to <field>.
      check <field> <= 2007.
      ASSIGN component 'BUKRS' of structure <tabrec> to <field>.
      READ TABLE LT_ITZGLCCODE WITH KEY ZBUKRS = <field>
        BINARY SEARCH TRANSPORTING NO FIELDS. "speed up the volume.
      IF SY-SUBRC 0.
        MOVE-CORRESPONDING <tabrec> to  LS_PACKAGE.   
        APPEND LS_PACKAGE TO LT_DATAPACKAGE.
      ENDIF.
    ENDLOOP.
    Regards,
    Clemens

  • Problems exporting video to AVI TYPE 1 format

    Hello
    I use the Final Cut Version ProHd for editing my videos but I'm having problems when exporting the final project.
    The file is exported in the .mov format but I need it exported as AVI type 1 since it is going to be played in a PC.
    If I export it as a regular AVI, it comes out without sound.
    Anybody knows of a plugin that could solve my problem or another way to solve this situation?
    Thanks
    Alex

    Boxx Technologies
    Windows 7
    Premiere Pro CS6
    Black Magic Capture
    No Mercury Playback
    CS6 is updated
    I am running magic bullet and Tiffen DFX
    Codec: On2 VP6
    1920x1080 , 29.97 fps
    Also after I hit export, the encoding window says "Not responding"......then it requires me to either wait or close the program. Thanks again for the help. 

  • Getting Your Files into DV-AVI Type II Format

    The advice I’ve received on the forum suggests the best file format to edit in is DV-AVI Type II.   I have attempted conversions to this format unsuccessfully and had a couple of questions I’m hoping the community can answer.
    1.       Is DV-Type II the name of the compression codec used to generate the AVI file?  I have attempted video conversions with at least three different pieces of software but have never seen this provided as an option.  Is it a specific codec that I must download before my video conversion programs can use it or is it known under a different name?
    2.       For those of you who capture video in non-ideal formats, what third-party software do you use to convert to DV-AVI Type II.  I’ve tried QuickTime Pro (option wasn’t provided), 4videosoft (option wasn’t provided), and AVS Video Converter (option wasn’t provided).   My fallback position is editing with uncompressed AVI files, but they are unwieldy as you would expect.

    Please be very wary of any CODEC packs. As Harm says, you should have it with PrPro. If you have Vista, you can download and install THEIR Vista CODEC pack - that is the only one that I would touch with that "10' pole."
    Harm is fond of saying that a CODEC pack is the first step to wiping your HDD and completely installing everything again. I don't quite feel THAT strongly, but very close.
    One of the problems with other software (and CODEC packs) is that they go out of their way to destroy other programs' CODEC's. Adobe kinda' "hides" theirs, so other programs cannot get to them easily - this will yield false positives from G-Spot and Sherlock the CODEC Detective, but they still function perfectly.
    Good luck,
    Hunt

  • Exporting DV AVI Type 2

    So here is the quick rundown...
    I work at a small community cable television station. The system we use to cable-cast is windows based and plays Microsoft DV AVI files. The systems we edit with are G5's running the latest Final Cut Studio. After going back and forth with technical support of the manufactures of the cable-cast system we have decided that the problem lies with the fact I am exporting Type 1 AVI's which they tell me have a file size limit of 4GB, well under what a normal half hour show comes out to.
    Is there anyway to get Final Cut to export Type 2 AVI's ? If not is there third party plug-ins or software that is priced reasonably?
    Thanks for the help.
    Ray

    Is here anyway to get Final Cut to export Type 2 AVI's ? If not is there third party plug-ins or software that is priced reasonably?
    <
    Ah, terribly sorry. I misread. Looked like you were supplying programming to a network. But you're actually working in a shop that uses a production format that is completely incompatible with the 'cast output. Interesting engineering decision.
    You can always try google, amazing stuff:
    http://www.puremotion.com/forum/viewtopic.php?p=14219&sid=7f9a9c6ba0e83f399c3092 5b615ac09c
    http://www.microsoft.com/whdc/archive/dvavi.mspx
    http://users.tpg.com.au/mtam/guide_wmm2.htm
    http://shortfilm.videohelp.com/2005/09/how-to-convert-dv-avi-type-1-into-xvid.ht ml
    http://msdn2.microsoft.com/en-us/library/ms787833.aspx
    http://dvcreators.net/discuss/showthread.php?t=9986
    http://en.wikipedia.org/wiki/DV
    The upshot appears to be you need something that is not available on the Macintosh. I see no references to any tools that are OS10 compatible. But try macupdate and versiontracker.
    good luck on this one. Try hitting the Windows-centric support forums for WMV encoders.
    bogiesan

  • CS4: Converting AVCHD to DV-AVI Type II - what's your tool / approach?

    My machine lacks the horsepower to handle native AVCHD without a lot of jerky playback issues, and in a previous thread I got a lot of good advice on solving this problem. Short of buying faster ponies, the best solution as I understand it is to first convert to the native DV-AVI Type II format that Premeire uses.
    I thought that finding the appropriate conversion tool would be a short Google and / or Adobe Forum search away, but half a day of searching both and I've still not found a suitable solution. I'm attempting to convert .mts files from a Panasonic AG-HMC70P camera. Here are the results thus far for PC based programs:
    Koyote
    It may get the job done, but it installs malware so it's a non starter.
    Super8
    Perhaps it's able to accomplish the AVCHD - DV-AVI Type II conversion. However, I've not yet been able to flip the right switches to succeed. Perhaps if I had more education in world of video formats its user interface would be more intuitive, but I'm not seeing an obvious path to the correct conversion. Anyone successfully converted and imported the results into Premiere from this one? If so, what settings did you use?
    VoltaicHD
    Seems like a nice program, but the output files didn't seem to play nice with Premiere. Audio & video out of sync.
    I've looked at many others but these are the only ones I've downloaded and given a try. I'm sure I'm not the only one here who needs to do this conversion. If you have a tool that you're using that supports batches of files, I'd be grateful if you'd share the info on it.
    If I can't find a good conversion program (wouldn't have thought it would be so hard to find one), I'm wondering if Adobe Media Encoder would generate the same results. In other words, if I dropped an .mts file on a timeline in Premiere and then exported it to AVI / NTSC DV Widescreen (or some other such setting), would this give me the same results, i.e. a native DV-AVI Type II file?
    Would appreciate any suggestions you might have on converting AVCHD footage.
    Thanks,
    Chris

    Hi, Rod.
    Good stuff, appreciate the link.
    While it would be nice if I could find a suitable program to just batch convert the files, I don't seem to be having much luck on that front. It's a bit more of a workflow hassle to step it through Premiere -> Media Encoder in order to get the initial raw SD footage that I want to edit, but on the bright side it does seem to be the path of maximum control in terms of the quality of files I end up with for editing. So maybe that's the way to go.
    Thanks, man.
    Chris

  • Facebook reports that i'm using v3.5 of Firefox and Windows 2000 when running on 16.0.2 and XP (upgraded system). where is this info and how to reset?

    the PC was upgraded from Win2000 to XP, and has all the XP service packs installed. it is also running Firefox 16.0.2. when i go to Facebook, and other pages, it says that i'm running an unsupported operating system (says i'm using Windows 2000), and i should upgrade my browser to the latest version (says i'm running FF 3.5, or FF 3.6, can't remember which). i' ve looked thru the registry, but haven't found anything that jumps out. where else could this info be stored that Firefox is looking at.

    '' pbturner wrote:''
    where is this information stored? and how can i correct it?
    It's explained in the “Firefox is showing the wrong User Agent” section of the aforementioned article.
    # Type ''about:config'' in the address bar and press Enter.
    # Press the big button to bypass the warning.
    # In the Search bar, paste ''general.useragent''
    # If any of the search results show “Status: user set”, right-click each one and choose '''Reset'''
    You should also get rid of Fast Browser Search, which is what corrupted your user agent string. Other names to watch out for are “Fast Browser search protection”, “Fast Browser Search (MyTattoo)”.<br>These may appear not only in your Firefox add-ons, but also your Internet Explorer add-ons and Windows Control Panel, in the Uninstall or Add or Remove Programs category.
    * [[Disable or remove Add-ons]]

  • Where can I create Partner Role type (TSW003-supplier) for TSW

    HI IS OIL Expertise,
    Where can I create Partner Role type (TSW003-supplier) for TSW?
    Because while creating partner role @T Code: O4TQ @ Role Assignment” TSW003-supplier” not available on drop-down list. 
    please do needful on this.
    Thanks
    Chandra

    Hello Chandrasekhar
      As you know that Partner Role is -
    "The master data record of a partner role is used to define a business partner. The partner role includes information about the activities that the business partner can carry out and where the business partner carries out these activities. Stock-holding objects, such as plants and storage locations can also be defined as partner roles."
    According to your screen shot and question, you want to define the TSW003 which only shown when you enter Vendor code in initial screen i.e. O4TQ.
    Thanks
    Yogesh

  • Convert avi type 1 to type 2 ???

    How / best way / software to Convert avi type 1 to type 2 for use in PPro?

    The classic for this has been the Ulead free tool.
    http://www.ulead.com/download/dvconverter/download.htm
    When I looked for the site for it today, I see a post (on another site) that it may not convert clips over 4 Gigs correctly (and without any error message). Anyone know whether this is true?

  • This is a different type of the "wifi grayed out."

    This is a different type of the "wifi grayed out." My Iphone experiences the same problem that others have, the wifi becomes grayed out and I am unable to click it. However, after five or so days the wifi miraculously returns to full functionality, but then returns to grayed out again. I went to the Apple store, and they said I had water damage (i am skeptical) because my phone has been no where near water. I did the "freezer" trick that some mention, and that got it to work for a bit but not long. I am assuming that  it is a hardware problem and not software, since everything else works fine. I have a 4s on the latest ios. Can someone help me before the wifi turns gray again? I don't want to have to buy a new phone if needed.

    You need to follow the steps below:
    iOS: Wi-Fi settings grayed out or dim
    If Apple have confirmed water damage then more than likely you will need to get a replacement.

  • "Out of memory" while importing AVI  type (AJA) file with AE CS3

    With After Effects CS3 (version 8.0.2.27) when we import an AVI type (AJA) file greater than 2Gigs captured by an another PC with a Xena board AJA , a message window appears : After Effects: Out of memory.(945949kK requested) (23 :: 40). If we import the same file with After Effects CS2 (version: 7.0.1) we have no problem. If we import an AVI (AJA) file smaller than 2 Gigs with AE CS3 no problem
    appears. If we capture an AVI type (Matrox) file greater than 2Gigs and import this one with AE CS3 no message appears. If we import a MOV type (AJA) file greater than 2 Gigs no problem appears with AE CS3. So to bypass this problem we are working with footage captured in MOV type file AJA. The PC which the AE CS3 is running has 4 Gigs of RAM with 2 Xeon Quad CPU.
    Thanks
    Marc

    Most likely an issue with MediaCore trying to take over and then not getting it right... Have you checked with AJA? maybe they know something about it.
    Mylenium

  • Where is do we use adapter type - XI adapter?

    Where is do we use adapter type - XI adapter?

    Check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/f4/0a1640a991c742e10000000a1550b0/frameset.htm
    "&#9679;       XI 3.0
    To connect an ABAP-based Integration Engine, Web AS 6.40.
    To connect the PCK.
    To connect the XI 3.0 J2SE Adapter Engine.
    To connect the Java proxy runtime.
    &#9679;      XI 2.0
    To connect the XI 2.0 plain J2SE Adapter Engine.
    To connect an ABAP-based Integration Engine, Web AS 6.20."

Maybe you are looking for

  • How to find a trigger point of a PC

    Hi, We have PC which wasn't scheduled but got executed in the system. Now we need to find out how the PC got triggered. I can see  Process chain is used as a local chain (using RSPCCHAIN table) in parent PC which was scheduled on the week-end. The pa

  • Family sharing with apple ID not primary iCloud ID

    hi! before family sharing existed, we set up a new apple id in iTunes (a gmail address) for my children to share so they could have the same purchases on their iPads. they also had their own unique apple id's for mail, contacts, etc. now that we're t

  • Isight camera not working after the last update

    After reboot of the last OS update Isight camera not working... i've tried photobooth, ichat, skype and it doesn't show up anywhere. in fact, when i go to system profiler, it doesn't show isight under USB connections at all. just to give you a recap

  • HELP needed !!! pleace help !!

    I have a problem. this is the site ( http://home.planet.nl/~onbe1102/prikbord.html its a flash site and when i click to the name buttons i would like to open a *.XLS file or a site. the action fore the buttons ar now: btnWilliam_mc.onRollOver = funct

  • Response based notification

    Hi, I have a response based notification. Once user clicks or approve or reject, it opens up another message box and user has to click send to send the notification. Is there a possibility to automatically send the notifcation once the approve or rej