Addt with cs4

I have addt 1.0.0 for CS3, is it possible to use this in CS4?  I cant find anyway to upgrade it although this site says there is an upgrade.  When i try to load this with CS4, it tells me i need CS3.  I have a new machine and bought a new copy of CS4.  Do i have to load CS3 first and then upgrade to CS4?

ADDT version 1.0.1 will run with Dreamweaver CS4 as well and can be downloaded from here: http://www.adobe.com/support/dreamweaver/addt/downloads_updaters.html
Cheers,
Günter

Similar Messages

  • Addt for cs4 SQL error

    Hi there,
    When creating a registration page using addt for CS4 I get the following error when I subit the registration form:
    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' id TEXT)' at line 1
    ('id' in this recordset is actually NUMERIC)
    I've got a feeling this is an error somewhere in the toolbox libraries.
    I have a similiar registration form on another site that I created with the previous version of ADDT and that works fine. However, if I copy all that code across into the site using the updated library I get the same above error.
    Has anybody come across this?

    Hi Gunter, thanks for replying.
    <br />(Incidentally, this code is also erroneously inserted ABOVE the class and connection includes so it doesn't work until I manually move the includes above the code.)
    <br />
    <br />*** FULL DEBUG TRACE ***
    <br />Error:
    <br />Internal error.
    <br />Developer Details:
    <br />tNG_fields.getFakeRecordset:
    <br />SQL error: Error creating temporary table:
    <br />You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' user_id TEXT)' at line 1
    <br />SQL:
    <br />CREATE TEMPORARY TABLE KT_fakeRS_20090307 (username TEXT, password TEXT, firstname TEXT, lastname TEXT, email TEXT, date TEXT, active TEXT, key TEXT, user_id TEXT) (FIELDS_FAKE_RS_ERROR)
    <br />tNG Execution Trace - VIEW
    <br />
    <br /> * tNG_insert.executeTransaction
    <br /> o STARTER.Trigger_Default_Starter
    <br /> o tNG_insert.doTransaction
    <br /> + BEFORE.Trigger_Default_FormValidation
    <br /> + BEFORE.Trigger_Registration_CheckUniqueUsername
    <br /> + BEFORE.Trigger_Registration_CheckPassword
    <br /> + BEFORE.Trigger_Registration_PrepareActivation
    <br /> + tNG_insert.prepareSQL
    <br /> + tNG_insert.executeTransaction - execute sql*
    <br /> + ERROR.Trigger_Default_Insert_RollBack
    <br /> * tNG_insert.getRecordset
    <br /> * tNG_insert.getFakeRsArr
    <br /> * tNG_insert.getLocalRecordset
    <br /> * tNG_insert.getFakeRecordset*
    <br />
    <br />*** CODE GENERATED BY USER REGISTRATION WIZARD *********
    <br />
    <br /><?php<br />// Load the common classes<br />require_once('includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("");<br /><br />// Make unified connection variable<br />$conn_japanga = new KT_connection($japanga, $database_japanga);<br />?>
    <br />
    <br /><?php<br />//start Trigger_CheckPasswords trigger<br />//remove this line if you want to edit the code by hand<br />function Trigger_CheckPasswords(&$tNG) {<br />  $myThrowError = new tNG_ThrowError($tNG);<br />  $myThrowError->setErrorMsg("Passwords do not match.");<br />  $myThrowError->setField("password");<br />  $myThrowError->setFieldErrorMsg("The two passwords do not match.");<br />  return $myThrowError->Execute();<br />}<br />//end Trigger_CheckPasswords trigger<br /><br />//start Trigger_WelcomeEmail trigger<br />//remove this line if you want to edit the code by hand<br />function Trigger_WelcomeEmail(&$tNG) {<br />  $emailObj = new tNG_Email($tNG);<br />  $emailObj->setFrom("{KT_defaultSender}");<br />  $emailObj->setTo("{email}");<br />  $emailObj->setCC("");<br />  $emailObj->setBCC("");<br />  $emailObj->setSubject("Welcome");<br />  //FromFile method<br />  $emailObj->setContentFile("includes/mailtemplates/welcome.html");<br />  $emailObj->setEncoding("ISO-8859-1");<br />  $emailObj->setFormat("HTML/Text");<br />  $emailObj->setImportance("Normal");<br />  return $emailObj->Execute();<br />}<br />//end Trigger_WelcomeEmail trigger<br /><br />//start Trigger_ActivationEmail trigger<br />//remove this line if you want to edit the code by hand<br />function Trigger_ActivationEmail(&$tNG) {<br />  $emailObj = new tNG_Email($tNG);<br />  $emailObj->setFrom("{KT_defaultSender}");<br />  $emailObj->setTo("{email}");<br />  $emailObj->setCC("");<br />  $emailObj->setBCC("");<br />  $emailObj->setSubject("Activation");<br />  //FromFile method<br />  $emailObj->setContentFile("includes/mailtemplates/activate.html");<br />  $emailObj->setEncoding("ISO-8859-1");<br />  $emailObj->setFormat("HTML/Text");<br />  $emailObj->setImportance("Normal");<br />  return $emailObj->Execute();<br />}<br />//end Trigger_ActivationEmail trigger<br /><br />// Start trigger<br />$formValidation = new tNG_FormValidation();<br />$formValidation->addField("username", true, "text", "", "3", "12", "Please enter a name between 3 and 12 characters.");<br />$formValidation->addField("password", true, "text", "", "6", "12", "Please enter a passsword between 6 and 12 characters.");<br />$formValidation->addField("firstname", true, "text", "", "3", "15", "Please enter your first name.");<br />$formValidation->addField("lastname", true, "text", "", "3", "15", "Please enter your last name (3-15 chars).");<br />$formValidation->addField("email", true, "text", "email", "", "", "Please enter a valid email. ");<br />$tNGs->prepareValidation($formValidation);<br />// End trigger<br /><br />// Make an insert transaction instance<br />$userRegistration = new tNG_insert($conn_japanga);<br />$tNGs->addTransaction($userRegistration);<br />// Register triggers<br />$userRegistration->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Insert1");<br />$userRegistration->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);<br />$userRegistration->registerTrigger("END", "Trigger_Default_Redirect", 99, "{kt_login_redirect}");<br />$userRegistration->registerConditionalTrigger("{POST.password} != {POST.re_password}", "BEFORE", "Trigger_CheckPasswords", 50);<br />$userRegistration->registerTrigger("AFTER", "Trigger_WelcomeEmail", 40);<br />$userRegistration->registerTrigger("AFTER", "Trigger_ActivationEmail", 40);<br />// Add columns<br />$userRegistration->setTable("users");<br />$userRegistration->addColumn("username", "STRING_TYPE", "POST", "username");<br />$userRegistration->addColumn("password", "STRING_TYPE", "POST", "password");<br />$userRegistration->addColumn("firstname", "STRING_TYPE", "POST", "firstname");<br />$userRegistration->addColumn("lastname", "STRING_TYPE", "POST", "lastname");<br />$userRegistration->addColumn("email", "STRING_TYPE", "POST", "email");<br />$userRegistration->addColumn("date", "DATE_TYPE", "POST", "date");<br />$userRegistration->setPrimaryKey("user_id", "NUMERIC_TYPE");<br /><br />// Execute all the registered transactions<br />$tNGs->executeTransactions();<br /><br />// Get the transaction recordset<br />$rsusers = $tNGs->getRecordset("users");<br />$row_rsusers = mysql_fetch_assoc($rsusers);<br />$totalRows_rsusers = mysql_num_rows($rsusers);<br />?>
    <br /><?php require_once('Connections/japanga.php'); ?>
    <br /><?php<br />// Load the common classes<br />require_once('includes/common/KT_common.php');<br /><br />// Load the tNG classes<br />require_once('includes/tng/tNG.inc.php');<br /><br />// Make a transaction dispatcher instance<br />$tNGs = new tNG_dispatcher("");<br /><br />// Make unified connection variable<br />$conn_japanga = new KT_connection($japanga, $database_japanga);<br />?>

  • Exporting h.264 with CS4 vs CS3

    Maybe I'm just dumb and this is an easy question....I'm not sure, but here goes:
    I had a project in Premiere Pro CS3, a music video. I'm used to exporting videos as quicktime with an h.264 codec for online streaming from CS3, and they always looked great. A lot of websites cap video uploads to 500MB or a gig, so it was a perfect way to get a high quality video on the net. The 3 minute music video I was working on became a great looking 450MB h.264 movie.
    With CS4 and the adobe media encoder, things are a bit different. I export as a quicktime movie with the h.264 codec, at the same settings (100% quality) but it looks awful. The same music video was around 80MB and didn't look anywhere near the quality of same video exported from CS3. I've tried a number of options and presets, and havn't been able to get the same quality or size file.
    I even checked both files in G-Spot codec reader (great tool) and they were the exact same AVC1-h.264 codec.
    What is happening here? Is the codec somehow used differently in CS4 than in CS3? Is there something I'm not doing to get a high quality h.264 movie out of CS4?
    Thanks,
    Peter

    The bitrate of your output movie depends on your Export Settings. At the bottom of the Preset list is "Edit Export Settings". There you can adjust all the settings just like CS3.

  • Still weird problems with CS4/My new computer

    Here is situation. Machine works very well when I´m editing HD video but soon as I start edit multi-cam: PROBLEMS! And as I watch from monitor that materia that I been edited so far, it works well, but as soon as I try to change cameras, everything slows-down. Like there is too little memory or something. Could the problem be somewhere in that CS4 program? Because I watch same time those CPU/Memory values and they don´t go very hight. CPU about max. 40% and Memory max 4Gb. And basicly: Is thia computer powerfull enough for Creative Suite CS4
    My graphics card is, ATI Radeon HD 4870. I have update my bios and  Radeon should be 64bit with latest drivers.
    I have ran PassMark Performance test again and again. 2D results are mysterious low and also  disk results ( sequenta write/random seek).
    Everydays I got bluescreens (Bad_Pool-Header, Bad-Pool_Caller etc.)
    Also I´ve notised that in that computer shop they connect those Hard-drives in in SAT 3 and 4. Should they be connected in 1 & 2?
    Also my "first" hard-drive (C:) shoud be very fast, 10 000rpm but in that performance test, and also in Windows hard-drive test results shows, that information does not move as fast as it should be?
    Hard-drive is 300 GB ATA II VelociRaptor drive model FS WD3000HLFS
    ( http://wdc.custhelp.com/cgi-bin/wdc.cfg/php/enduser/std_adp.php?p_faqid=2503 ). Is that hard-drive appropriate for Windows 7 or vise versa?
    Or could that problem be in my memory chips?
    In here I ad my DxDiag-file. I wonder why there said that in displey devices: Current Mode: 1920 x 1200 (32 bit) (59Hz) ?? Should it be 645Bit be cause displaycard is 64bit ???
    System Information
    Time of this report: 11/11/2009, 21:51:10
           Machine name: OMISTAJA-PC
       Operating System: Windows 7 Professional 64-bit (6.1, Build 7600) (7600.win7_rtm.090713-1255)
               Language: Finnish (Regional Setting: Finnish)
    System Manufacturer: System manufacturer
           System Model: System Product Name
                   BIOS: BIOS Date: 09/03/09 15:52:51 Ver: 08.00.15
              Processor: Intel(R) Core(TM) i7 CPU         920  @ 2.67GHz (8 CPUs), ~2.7GHz
                 Memory: 12288MB RAM
    Available OS Memory: 12280MB RAM
              Page File: 2387MB used, 22168MB available
            Windows Dir: C:\Windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7600.16385 64bit Unicode
    DxDiag Notes
          Display Tab 1: No problems found.
            Sound Tab 1: No problems found.
            Sound Tab 2: No problems found.
            Sound Tab 3: No problems found.
              Input Tab: No problems found.
    DirectX Debug Levels
    Direct3D:    0/4 (retail)
    DirectDraw:  0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay:  0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow:  0/6 (retail)
    Display Devices
              Card name: ATI Radeon HD 4800 Series
           Manufacturer: ATI Technologies Inc.
              Chip type: ATI display adapter (0x9440)
               DAC type: Internal DAC(400MHz)
             Device Key: Enum\PCI\VEN_1002&DEV_9440&SUBSYS_22671787&REV_00
         Display Memory: 4083 MB
       Dedicated Memory: 1015 MB
          Shared Memory: 3067 MB
           Current Mode: 1920 x 1200 (32 bit) (59Hz)
           Monitor Name: Yleinen PnP-näyttölaite
          Monitor Model: Q241WB-2
             Monitor Id: VSCDC21
            Native Mode: 1920 x 1200(p) (59.950Hz)
            Output Type: HD15
            Driver Name: atiumd64.dll,atidxx64.dll,atiumdag,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.14.0010.0700 (English)
         Driver Version: 8.661.0.0
            DDI Version: 10.1
           Driver Model: WDDM 1.1
      Driver Attributes: Final Retail
       Driver Date/Size: 9/24/2009 00:00:58, 4649472 bytes
            WHQL Logo'd: Yes
        WHQL Date Stamp:
      Device Identifier: {D7B71EE2-D700-11CF-8B76-6D02A1C2C535}
              Vendor ID: 0x1002
              Device ID: 0x9440
              SubSys ID: 0x22671787
            Revision ID: 0x0000
    Driver Strong Name: oem15.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_R7X:8.661.0.0:pci\ven_1002&dev_9440
         Rank Of Driver: 00E62001
            Video Accel: ModeMPEG2_A ModeMPEG2_C
       Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
                         {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
                         {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
           D3D9 Overlay: Not Supported
                DXVA-HD: Not Supported
           DDraw Status: Enabled
             D3D Status: Enabled
             AGP Status: Enabled
    Sound Devices
                Description: Kaiuttimet (SoundMAX Integrated Digital HD Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
                Hardware ID: HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438372&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: ADIHdAud.sys
             Driver Version: 6.10.0002.6585 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 6/5/2009 11:42:04, 475136 bytes
                Other Files:
            Driver Provider: AnalogDevices
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: SPDIF-liitäntä (SoundMAX Integrated Digital HD Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438372&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: ADIHdAud.sys
             Driver Version: 6.10.0002.6585 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 6/5/2009 11:42:04, 475136 bytes
                Other Files:
            Driver Provider: AnalogDevices
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
                Description: Digitaalinen lähtö (SoundMAX Integrated Digital HD Audio)
    Default Sound Playback: No
    Default Voice Playback: No
                Hardware ID: HDAUDIO\FUNC_01&VEN_11D4&DEV_989B&SUBSYS_10438372&REV_1003
            Manufacturer ID: 1
                 Product ID: 100
                       Type: WDM
                Driver Name: ADIHdAud.sys
             Driver Version: 6.10.0002.6585 (English)
          Driver Attributes: Final Retail
                WHQL Logo'd: Yes
              Date and Size: 6/5/2009 11:42:04, 475136 bytes
                Other Files:
            Driver Provider: AnalogDevices
             HW Accel Level: Basic
                  Cap Flags: 0xF1F
        Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
                  HW Memory: 0
           Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
       I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No
    Sound Capture Devices
                Description: Mikrofoni (SoundMAX Integrated Digital HD Audio)
      Default Sound Capture: Yes
      Default Voice Capture: Yes
                Driver Name: ADIHdAud.sys
             Driver Version: 6.10.0002.6585 (English)
          Driver Attributes: Final Retail
              Date and Size: 6/5/2009 11:42:04, 475136 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
                Description: Linjatulo (SoundMAX Integrated Digital HD Audio)
      Default Sound Capture: No
      Default Voice Capture: No
                Driver Name: ADIHdAud.sys
             Driver Version: 6.10.0002.6585 (English)
          Driver Attributes: Final Retail
              Date and Size: 6/5/2009 11:42:04, 475136 bytes
                  Cap Flags: 0x1
               Format Flags: 0xFFFFF
    DirectInput Devices
          Device Name: Hiiri
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: Näppäimistö
             Attached: 1
        Controller ID: n/a
    Vendor/Product ID: n/a
            FF Driver: n/a
          Device Name: MTE-450
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x056A, 0x0065
            FF Driver: n/a
          Device Name: HID-compliant consumer control device
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1267, 0x0103
            FF Driver: n/a
          Device Name: HID-yhteensopiva laite
             Attached: 1
        Controller ID: 0x0
    Vendor/Product ID: 0x1267, 0x0103
            FF Driver: n/a
    Poll w/ Interrupt: No
    USB Devices
    + USB-pääkeskitin
    | Vendor/Product ID: 0x8086, 0x3A36
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 7/14/2009 02:07:09, 343040 bytes
    | Driver: usbd.sys, 7/14/2009 02:06:23, 7936 bytes
    Gameport Devices
    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x1267, 0x0103
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 7/14/2009 02:00:20, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 03:48:04, 50768 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/14/2009 01:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 03:48:04, 50768 bytes
    |
    +
    | Vendor/Product ID: 0x045E, 0x00E1
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + HID-yhteensopiva hiiri
    | Vendor/Product ID: 0x056A, 0x0065
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 02:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 03:48:27, 49216 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 7/14/2009 03:45:55, 62544 bytes
    | Driver: sermouse.sys, 7/14/2009 02:00:20, 26624 bytes
    | Driver: mouclass.sys, 7/14/2009 03:48:27, 49216 bytes
    Disk & DVD/CD-ROM Drives
          Drive: C:
    Free Space: 219.6 GB
    Total Space: 286.2 GB
    File System: NTFS
          Model: WDC WD3000HLFS-01G6U0 ATA Device
          Drive: E:
    Free Space: 224.0 GB
    Total Space: 953.8 GB
    File System: NTFS
          Model: ST31000528AS ATA Device
          Drive: D:
          Model: HL-DT-ST BD-RE  BH08LS20 ATA Device
         Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (Finnish), 7/14/2009 01:19:54, 147456 bytes
    System Devices
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3A
    Device ID: PCI\VEN_8086&DEV_3A3A&SUBSYS_82D41043&REV_00\3&11583659&0&EF
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:30, 51200 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) ICH10 Family 2 port Serial ATA Storage Controller 2 - 3A26
    Device ID: PCI\VEN_8086&DEV_3A26&SUBSYS_82D41043&REV_00\3&11583659&0&FD
       Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 03:45:45, 12352 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:46, 48720 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 03:52:21, 24128 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:52:21, 155728 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 3 - 340A
    Device ID: PCI\VEN_8086&DEV_340A&SUBSYS_836B1043&REV_12\3&11583659&0&18
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A39
    Device ID: PCI\VEN_8086&DEV_3A39&SUBSYS_82D41043&REV_00\3&11583659&0&D2
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) ICH10 Family 4 port Serial ATA Storage Controller 1 - 3A20
    Device ID: PCI\VEN_8086&DEV_3A20&SUBSYS_82D41043&REV_00\3&11583659&0&FA
       Driver: C:\Windows\system32\DRIVERS\pciide.sys, 6.01.7600.16385 (English), 7/14/2009 03:45:45, 12352 bytes
       Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:46, 48720 bytes
       Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 03:52:21, 24128 bytes
       Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:52:21, 155728 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 1 - 3408
    Device ID: PCI\VEN_8086&DEV_3408&SUBSYS_836B1043&REV_12\3&11583659&0&08
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: High Definition Audio -ohjain
    Device ID: PCI\VEN_1002&DEV_AA30&SUBSYS_AA301787&REV_00\4&2EB3824&0&0118
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:13, 122368 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 6 - 3A4A
    Device ID: PCI\VEN_8086&DEV_3A4A&SUBSYS_82EA1043&REV_00\3&11583659&0&E5
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A38
    Device ID: PCI\VEN_8086&DEV_3A38&SUBSYS_82D41043&REV_00\3&11583659&0&D1
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) ICH10R LPC Interface Controller - 3A16
    Device ID: PCI\VEN_8086&DEV_3A16&SUBSYS_82D41043&REV_00\3&11583659&0&F8
       Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 03:48:27, 15424 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub to ESI Port - 3405
    Device ID: PCI\VEN_8086&DEV_3405&SUBSYS_836B1043&REV_12\3&11583659&0&00
       Driver: n/a
         Name: ATI Radeon HD 4800 Series
    Device ID: PCI\VEN_1002&DEV_9440&SUBSYS_22671787&REV_00\4&2EB3824&0&0018
       Driver: C:\Windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.0961 (English), 9/24/2009 01:01:24, 6175744 bytes
       Driver: C:\Windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0019 (English), 9/23/2009 23:21:08, 53248 bytes
       Driver: C:\Windows\system32\atiumd64.dll, 8.14.0010.0700 (English), 9/24/2009 00:00:58, 4649472 bytes
       Driver: C:\Windows\system32\atiumd6a.dll, 8.14.0010.0236 (English), 9/23/2009 23:54:38, 2519040 bytes
       Driver: C:\Windows\system32\atitmm64.dll, 6.14.0011.0022 (English), 9/24/2009 00:26:40, 120320 bytes
       Driver: C:\Windows\system32\atiicdxx.dat, 8/26/2009 18:58:14, 195854 bytes
       Driver: C:\Windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 9/23/2009 23:36:42, 53248 bytes
       Driver: C:\Windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 9/23/2009 23:36:42, 53248 bytes
       Driver: C:\Windows\system32\atiadlxx.dll, 6.14.0010.1052 (English), 9/23/2009 23:36:12, 291840 bytes
       Driver: C:\Windows\system32\atiumd6a.cap, 9/23/2009 23:52:18, 333904 bytes
       Driver: C:\Windows\system32\atimuixx.dll, 6.14.0010.1001 (English), 9/24/2009 00:25:52, 12288 bytes
       Driver: C:\Windows\system32\atiesrxx.exe, 6.14.0011.1043 (English), 9/24/2009 00:28:02, 202752 bytes
       Driver: C:\Windows\system32\atieclxx.exe, 6.14.0011.1043 (English), 9/24/2009 00:28:36, 439296 bytes
       Driver: C:\Windows\system32\atipdl64.dll, 6.14.0010.2560 (English), 9/24/2009 00:26:20, 421376 bytes
       Driver: C:\Windows\system32\atiedu64.dll, 6.14.0010.2514 (English), 9/24/2009 00:25:46, 59392 bytes
       Driver: C:\Windows\system32\ATIDEMGX.dll, 2.00.3553.31463 (Finnish), 9/24/2009 00:28:48, 446464 bytes
       Driver: C:\Windows\system32\atio6axx.dll, 6.14.0010.9026 (English), 9/24/2009 00:17:54, 16681984 bytes
       Driver: C:\Windows\system32\aticaldd64.dll, 6.14.0010.0427 (English), 9/23/2009 23:33:06, 4592640 bytes
       Driver: C:\Windows\system32\aticalrt64.dll, 6.14.0010.0427 (English), 9/23/2009 23:33:36, 48640 bytes
       Driver: C:\Windows\system32\aticalcl64.dll, 6.14.0010.0427 (English), 9/23/2009 23:33:22, 41984 bytes
       Driver: C:\Windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/11/2009 21:35:30, 118784 bytes
       Driver: C:\Windows\system32\atidxx64.dll, 8.17.0010.0233 (English), 9/24/2009 00:15:10, 3598848 bytes
       Driver: C:\Windows\SysWOW64\atiumdag.dll, 8.14.0010.0700 (English), 9/24/2009 00:06:42, 3593216 bytes
       Driver: C:\Windows\SysWOW64\atiumdva.dll, 8.14.0010.0236 (English), 9/23/2009 23:48:48, 2849792 bytes
       Driver: C:\Windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 9/23/2009 23:36:36, 52224 bytes
       Driver: C:\Windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 9/23/2009 23:36:36, 52224 bytes
       Driver: C:\Windows\SysWOW64\atiadlxy.dll, 6.14.0010.1052 (English), 9/23/2009 23:36:04, 204800 bytes
       Driver: C:\Windows\SysWOW64\atiumdva.cap, 9/23/2009 23:48:28, 333904 bytes
       Driver: C:\Windows\SysWOW64\atipdlxx.dll, 6.14.0010.2560 (English), 9/24/2009 00:26:12, 356352 bytes
       Driver: C:\Windows\SysWOW64\Oemdspif.dll, 6.15.0006.0006 (English), 9/24/2009 00:25:58, 274432 bytes
       Driver: C:\Windows\SysWOW64\ati2edxx.dll, 6.14.0010.2514 (English), 9/24/2009 00:25:42, 43520 bytes
       Driver: C:\Windows\SysWOW64\atioglxx.dll, 6.14.0010.9026 (English), 9/23/2009 23:55:32, 12603904 bytes
       Driver: C:\Windows\SysWOW64\atidxx32.dll, 8.17.0010.0233 (English), 9/24/2009 00:22:54, 3009536 bytes
       Driver: C:\Windows\SysWOW64\aticaldd.dll, 6.14.0010.0427 (English), 9/23/2009 23:32:10, 3502080 bytes
       Driver: C:\Windows\SysWOW64\aticalrt.dll, 6.14.0010.0427 (English), 9/23/2009 23:33:34, 53248 bytes
       Driver: C:\Windows\SysWOW64\aticalcl.dll, 6.14.0010.0427 (English), 9/23/2009 23:33:20, 53248 bytes
       Driver: C:\Windows\atiogl.xml, 8/7/2009 09:31:36, 18618 bytes
       Driver: C:\Windows\system32\ATIODCLI.exe, 1.00.0000.0001 (English), 2/3/2009 20:52:08, 51200 bytes
       Driver: C:\Windows\system32\ATIODE.exe, 1.00.0000.0001 (English), 2/18/2009 17:55:24, 332288 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 5 - 3A48
    Device ID: PCI\VEN_8086&DEV_3A48&SUBSYS_82EA1043&REV_00\3&11583659&0&E4
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A37
    Device ID: PCI\VEN_8086&DEV_3A37&SUBSYS_82D41043&REV_00\3&11583659&0&D0
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub Throttle Registers - 3438
    Device ID: PCI\VEN_8086&DEV_3438&SUBSYS_00000000&REV_12\3&11583659&0&A3
       Driver: n/a
         Name: Intel(R) 82801 PCI Bridge - 244E
    Device ID: PCI\VEN_8086&DEV_244E&SUBSYS_82D41043&REV_90\3&11583659&0&F0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family PCI Express Root Port 3 - 3A44
    Device ID: PCI\VEN_8086&DEV_3A44&SUBSYS_82EA1043&REV_00\3&11583659&0&E2
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A36
    Device ID: PCI\VEN_8086&DEV_3A36&SUBSYS_82D41043&REV_00\3&11583659&0&EA
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub System Management Registers - 342E
    Device ID: PCI\VEN_8086&DEV_342E&SUBSYS_00000000&REV_12\3&11583659&0&A0
       Driver: n/a
         Name: Marvell 61xx RAID Controller
    Device ID: PCI\VEN_11AB&DEV_6121&SUBSYS_82121043&REV_B2\4&28714A0B&0&00E4
       Driver: n/a
         Name: Intel(R) ICH10 Family PCI Express Root Port 1 - 3A40
    Device ID: PCI\VEN_8086&DEV_3A40&SUBSYS_82EA1043&REV_00\3&11583659&0&E0
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A35
    Device ID: PCI\VEN_8086&DEV_3A35&SUBSYS_82D41043&REV_00\3&11583659&0&E9
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub Control Status and RAS Registers - 3423
    Device ID: PCI\VEN_8086&DEV_3423&SUBSYS_00000000&REV_12\3&11583659&0&A2
       Driver: n/a
         Name: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller
    Device ID: PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&B1C1760&0&00E5
       Driver: C:\Windows\system32\DRIVERS\yk62x64.sys, 11.22.0003.0003 (English), 9/28/2009 09:22:00, 395264 bytes
       Driver: C:\Windows\system32\yk62x64.dll, 11.10.0002.0003 (English), 9/28/2009 09:22:00, 496128 bytes
         Name: High Definition Audio -ohjain
    Device ID: PCI\VEN_8086&DEV_3A3E&SUBSYS_82EA1043&REV_00\3&11583659&0&D8
       Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:13, 122368 bytes
         Name: Intel(R) ICH10 Family USB Universal Host Controller - 3A34
    Device ID: PCI\VEN_8086&DEV_3A34&SUBSYS_82D41043&REV_00\3&11583659&0&E8
       Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:27, 30720 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) 5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers - 3422
    Device ID: PCI\VEN_8086&DEV_3422&SUBSYS_00000000&REV_12\3&11583659&0&A1
       Driver: n/a
         Name: Marvell Yukon 88E8056 PCI-E Gigabit Ethernet Controller #2
    Device ID: PCI\VEN_11AB&DEV_4364&SUBSYS_81F81043&REV_12\4&325840BC&0&00E2
       Driver: C:\Windows\system32\DRIVERS\yk62x64.sys, 11.22.0003.0003 (English), 9/28/2009 09:22:00, 395264 bytes
       Driver: C:\Windows\system32\yk62x64.dll, 11.10.0002.0003 (English), 9/28/2009 09:22:00, 496128 bytes
         Name: Intel(R) ICH10 Family USB Enhanced Host Controller - 3A3C
    Device ID: PCI\VEN_8086&DEV_3A3C&SUBSYS_82D41043&REV_00\3&11583659&0&D7
       Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.16385 (English), 7/14/2009 02:06:30, 51200 bytes
       Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:06:31, 324608 bytes
       Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:09, 343040 bytes
         Name: Intel(R) ICH10 Family SMBus Controller - 3A30
    Device ID: PCI\VEN_8086&DEV_3A30&SUBSYS_82D41043&REV_00\3&11583659&0&FB
       Driver: n/a
         Name: Intel(R) 5520/5500/X58 I/O Hub PCI Express Root Port 7 - 340E
    Device ID: PCI\VEN_8086&DEV_340E&SUBSYS_836B1043&REV_12\3&11583659&0&38
       Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 03:45:45, 183872 bytes
         Name: VIA 1394 OHCI -yhteensopiva isäntäohjain
    Device ID: PCI\VEN_1106&DEV_3044&SUBSYS_81FE1043&REV_C0\4&1B359D48&0&10F0
       Driver: C:\Windows\system32\DRIVERS\1394ohci.sys, 6.01.7600.16385 (Finnish), 7/14/2009 02:07:13, 227840 bytes
    DirectShow Filters
    DirectShow Filters:
    WMAudio Decoder DMO,0x00800800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMAPro over S/PDIF DMO,0x00600800,1,1,WMADMOD.DLL,6.01.7600.16385
    WMSpeech Decoder DMO,0x00600800,1,1,WMSPDMOD.DLL,6.01.7600.16385
    MP3 Decoder DMO,0x00600800,1,1,mp3dmod.dll,6.01.7600.16385
    Mpeg4s Decoder DMO,0x00800001,1,1,mp4sdecd.dll,6.01.7600.16385
    WMV Screen decoder DMO,0x00600800,1,1,wmvsdecd.dll,6.01.7600.16385
    WMVideo Decoder DMO,0x00800001,1,1,wmvdecod.dll,6.01.7600.16385
    Mpeg43 Decoder DMO,0x00800001,1,1,mp43decd.dll,6.01.7600.16385
    Mpeg4 Decoder DMO,0x00800001,1,1,mpg4decd.dll,6.01.7600.16385
    ffdshow Video Decoder,0xff800001,2,1,ffdshow.ax,1.00.0007.3094
    ffdshow raw video filter,0x00200000,2,1,ffdshow.ax,1.00.0007.3094
    ffdshow Audio Decoder,0x3fffffff,1,1,ffdshow.ax,1.00.0007.3094
    DV Muxer,0x00400000,0,0,qdv.dll,6.06.7600.16385
    MPC - Mpeg Source (Gabest),0x00400000,0,0,MpegSplitter.ax,1.03.1290.0000
    Color Space Converter,0x00400001,1,1,quartz.dll,6.06.7600.16385
    WM ASF Reader,0x00400000,0,0,qasf.dll,12.00.7600.16385
    Screen Capture filter,0x00200000,0,1,wmpsrcwp.dll,12.00.7600.16385
    AVI Splitter,0x00600000,1,1,quartz.dll,6.06.7600.16385
    VGA 16 Color Ditherer,0x00400000,1,1,quartz.dll,6.06.7600.16385
    SBE2MediaTypeProfile,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Microsoft DTV-DVD Video Decoder,0x005fffff,2,4,msmpeg2vdec.dll,6.01.7140.0000
    MPC - RealVideo Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.03.1290.0000
    AC3 Parser Filter,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
    StreamBufferSink,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Microsoft TV Captions Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
    MJPEG Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16385
    CBVA DMO wrapper filter,0x00200000,1,1,cbva.dll,6.01.7600.16385
    MPEG-I Stream Splitter,0x00600000,1,2,quartz.dll,6.06.7600.16385
    SAMI (CC) Parser,0x00400000,1,1,quartz.dll,6.06.7600.16385
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    MPEG-2 Splitter,0x005fffff,1,0,mpg2splt.ax,6.06.7600.16385
    MPC - MP4 Source,0x00600000,0,0,MP4Splitter.ax,1.03.1290.0000
    Closed Captions Analysis Filter,0x00200000,2,5,cca.dll,6.06.7600.16385
    SBE2FileScan,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Microsoft MPEG-2 Video Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
    MPC - FLV Splitter (Gabest),0x00600000,1,1,FLVSplitter.ax,1.03.1290.0000
    Internal Script Command Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16385
    MPEG Audio Decoder,0x03680001,1,1,quartz.dll,6.06.7600.16385
    DV Splitter,0x00600000,1,2,qdv.dll,6.06.7600.16385
    Video Mixing Renderer 9,0x00200000,1,0,quartz.dll,6.06.7600.16385
    Haali Media Splitter,0x00800001,0,1,splitter.x64.ax,1.09.0063.0013
    Haali Media Splitter (AR),0x00400000,1,1,splitter.x64.ax,1.09.0063.0013
    Microsoft MPEG-2 Encoder,0x00200000,2,1,msmpeg2enc.dll,6.01.7600.16385
    MPC - MP4 Splitter,0x00600000,1,1,MP4Splitter.ax,1.03.1290.0000
    ACM Wrapper,0x00600000,1,1,quartz.dll,6.06.7600.16385
    Video Renderer,0x00800001,1,0,quartz.dll,6.06.7600.16385
    MPEG-2 Video Stream Analyzer,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Line 21 Decoder,0x00600000,1,1,,
    Video Port Manager,0x00600000,2,1,quartz.dll,6.06.7600.16385
    Video Renderer,0x00400000,1,0,quartz.dll,6.06.7600.16385
    MPC - RealMedia Source,0x00600000,0,0,RealMediaSplitter.ax,1.03.1290.0000
    VPS Decoder,0x00200000,0,0,WSTPager.ax,6.06.7600.16385
    WM ASF Writer,0x00400000,0,0,qasf.dll,12.00.7600.16385
    VBI Surface Allocator,0x00600000,1,1,vbisurf.ax,6.01.7600.16385
    File writer,0x00200000,1,0,qcap.dll,6.06.7600.16385
    iTV Data Sink,0x00600000,1,0,itvdata.dll,6.06.7600.16385
    iTV Data Capture filter,0x00600000,1,1,itvdata.dll,6.06.7600.16385
    Haali Simple Media Splitter,0x00200000,0,1,splitter.x64.ax,1.09.0063.0013
    DirectVobSub,0x00200000,2,1,vsfilter.dll,1.00.0001.0003
    MPC - RealAudio Decoder,0x00600000,1,1,RealMediaSplitter.ax,1.03.1290.0000
    DirectVobSub (auto-loading version),0x00800002,2,1,vsfilter.dll,1.00.0001.0003
    DVD Navigator,0x00200000,0,3,qdvd.dll,6.06.7600.16385
    Microsoft TV Subtitles Decoder,0x00200001,1,0,MSTVCapn.dll,6.01.7600.16385
    Overlay Mixer2,0x00200000,1,1,,
    Haali Matroska Muxer,0x00200000,1,0,splitter.x64.ax,1.09.0063.0013
    RDP DShow Redirection Filter,0xffffffff,1,0,DShowRdpFilter.dll,
    Microsoft MPEG-2 Audio Encoder,0x00200000,1,1,msmpeg2enc.dll,6.01.7600.16385
    WST Pager,0x00200000,1,1,WSTPager.ax,6.06.7600.16385
    MPEG-2 Demultiplexer,0x00600000,1,1,mpg2splt.ax,6.06.7600.16385
    DV Video Decoder,0x00800000,1,1,qdv.dll,6.06.7600.16385
    ffdshow Audio Processor,0x00200000,1,1,ffdshow.ax,1.00.0007.3094
    SampleGrabber,0x00200000,1,1,qedit.dll,6.06.7600.16385
    Null Renderer,0x00200000,1,0,qedit.dll,6.06.7600.16385
    MPEG-2 Sections and Tables,0x005fffff,1,0,Mpeg2Data.ax,6.06.7600.16385
    Microsoft AC3 Encoder,0x00200000,1,1,msac3enc.dll,6.01.7600.16385
    MPC - FLV Source (Gabest),0x00600000,0,0,FLVSplitter.ax,1.03.1290.0000
    StreamBufferSource,0x00200000,0,0,sbe.dll,6.06.7600.16385
    Smart Tee,0x00200000,1,2,qcap.dll,6.06.7600.16385
    Overlay Mixer,0x00200000,0,0,,
    AVI Decompressor,0x00600000,1,1,quartz.dll,6.06.7600.16385
    NetBridge,0x00200000,2,0,netbridge.dll,6.01.7600.16385
    AVI/WAV File Source,0x00400000,0,2,quartz.dll,6.06.7600.16385
    MPC - MPEG4 Video Splitter,0x00600000,1,1,MP4Splitter.ax,1.03.1290.0000
    Wave Parser,0x00400000,1,1,quartz.dll,6.06.7600.16385
    MIDI Parser,0x00400000,1,1,quartz.dll,6.06.7600.16385
    Multi-file Parser,0x00400000,1,1,quartz.dll,6.06.7600.16385
    File stream renderer,0x00400000,1,1,quartz.dll,6.06.7600.16385
    ffdshow subtitles filter,0x00200000,2,1,ffdshow.ax,1.00.0007.3094
    MPC - Mpeg Splitter (Gabest),0x00400001,1,1,MpegSplitter.ax,1.03.1290.0000
    Microsoft DTV-DVD Audio Decoder,0x005fffff,1,1,msmpeg2adec.dll,6.01.7140.0000
    MPC - RealMedia Splitter,0x00600000,1,1,RealMediaSplitter.ax,1.03.1290.0000
    StreamBufferSink2,0x00200000,0,0,sbe.dll,6.06.7600.16385
    AVI Mux,0x00200000,1,0,qcap.dll,6.06.7600.16385
    MPC - MPEG4 Video Source,0x00600000,0,0,MP4Splitter.ax,1.03.1290.0000
    Line 21 Decoder 2,0x00600002,1,1,quartz.dll,6.06.7600.16385
    File Source (Async.),0x00400000,0,1,quartz.dll,6.06.7600.16385
    File Source (URL),0x00400000,0,1,quartz.dll,6.06.7600.16385
    Media Center Extender Encryption Filter,0x00200000,2,2,Mcx2Filter.dll,6.01.7600.16385
    AudioRecorder WAV Dest,0x00200000,0,0,WavDest.dll,
    AudioRecorder Wave Form,0x00200000,0,0,WavDest.dll,
    SoundRecorder Null Renderer,0x00200000,0,0,WavDest.dll,
    Haali Video Sink,0x00200000,1,0,splitter.x64.ax,1.09.0063.0013
    AC3File,0x00600000,0,1,ac3file64.ax,
    Infinite Pin Tee Filter,0x00200000,1,1,qcap.dll,6.06.7600.16385
    Enhanced Video Renderer,0x00200000,1,0,evr.dll,6.01.7600.16385
    BDA MPEG2 Transport Information Filter,0x00200000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG Video Decoder,0x40000001,1,1,quartz.dll,6.06.7600.16385
    WDM Streaming Tee/Splitter Devices:
    Tee/Sink-to-Sink -muunnin,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Video Compressors:
    WMVideo8 Encoder DMO,0x00600800,1,1,wmvxencd.dll,6.01.7600.16385
    WMVideo9 Encoder DMO,0x00600800,1,1,wmvencod.dll,6.01.7600.16385
    MSScreen 9 encoder DMO,0x00600800,1,1,wmvsencd.dll,6.01.7600.16385
    DV Video Encoder,0x00200000,0,0,qdv.dll,6.06.7600.16385
    ffdshow video encoder,0x00100000,1,1,ffdshow.ax,1.00.0007.3094
    MJPEG Compressor,0x00200000,0,0,quartz.dll,6.06.7600.16385
    Audio Compressors:
    WM Speech Encoder DMO,0x00600800,1,1,WMSPDMOE.DLL,6.01.7600.16385
    WMAudio Encoder DMO,0x00600800,1,1,WMADMOE.DLL,6.01.7600.16385
    IMA ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16385
    PCM,0x00200000,1,1,quartz.dll,6.06.7600.16385
    Microsoft ADPCM,0x00200000,1,1,quartz.dll,6.06.7600.16385
    GSM 6.10,0x00200000,1,1,quartz.dll,6.06.7600.16385
    CCITT A-Law,0x00200000,1,1,quartz.dll,6.06.7600.16385
    CCITT u-Law,0x00200000,1,1,quartz.dll,6.06.7600.16385
    MPEG Layer-3,0x00200000,1,1,quartz.dll,6.06.7600.16385
    Audio Capture Sources:
    Mikrofoni (SoundMAX Integrated ,0x00200000,0,0,qcap.dll,6.06.7600.16385
    Linjatulo (SoundMAX Integrated ,0x00200000,0,0,qcap.dll,6.06.7600.16385
    PBDA CP Filters:
    PBDA DTFilter,0x00600000,1,1,CPFilters.dll,6.06.7600.16385
    PBDA ETFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16385
    PBDA PTFilter,0x00200000,0,0,CPFilters.dll,6.06.7600.16385
    Midi Renderers:
    Default MidiOut Device,0x00800000,1,0,quartz.dll,6.06.7600.16385
    Microsoft GS Wavetable Synth,0x00200000,1,0,quartz.dll,6.06.7600.16385
    WDM Streaming Capture Devices:
    ,0x00000000,0,0,,
    SoundMAX HD Audio I,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    WDM Streaming Rendering Devices:
    ATI HD Audio rear output,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    HD Audio digital out,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    HD Audio digital out 2,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    SoundMAX HD Audio O,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    BDA Network Providers:
    Microsoft ATSC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBC Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBS Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft DVBT Network Provider,0x00200000,0,1,MSDvbNP.ax,6.06.7600.16385
    Microsoft Network Provider,0x00200000,0,1,MSNP.ax,6.06.7600.16385
    Multi-Instance Capable VBI Codecs:
    VBI Codec,0x00600000,1,4,VBICodec.ax,6.06.7600.16385
    BDA Transport Information Renderers:
    BDA MPEG2 Transport Information Filter,0x00600000,2,0,psisrndr.ax,6.06.7600.16385
    MPEG-2 Sections and Tables,0x00600000,1,0,Mpeg2Data.ax,6.06.7600.16385
    BDA CP/CA Filters:
    Decrypt/Tag,0x00600000,1,1,EncDec.dll,6.06.7600.16385
    Encrypt/Tag,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    PTFilter,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    XDS Codec,0x00200000,0,0,EncDec.dll,6.06.7600.16385
    WDM Streaming Communication Transforms:
    Tee/Sink-to-Sink -muunnin,0x00200000,1,1,ksproxy.ax,6.01.7600.16385
    Audio Renderers:
    Kaiuttimet (SoundMAX Integrated,0x00200000,1,0,quartz.dll,6.06.7600.16385
    Default DirectSound Device,0x00800000,1,0,quartz.dll,6.06.7600.16385
    Default WaveOut Device,0x00200000,1,0,quartz.dll,6.06.7600.16385
    Digitaalinen lähtö (SoundMAX In,0x00200000,1,0,quartz.dll,6.06.7600.16385
    DirectSound: Digitaalinen lähtö (SoundMAX Integrated Digital HD Audio),0x00200000,1,0,quartz.dll,6.06.7600.16385
    DirectSound: Kaiuttimet (SoundMAX Integrated Digital HD Audio),0x00200000,1,0,quartz.dll,6.06.7600.16385
    DirectSound: SPDIF-liitäntä (SoundMAX Integrated Digital HD Audio),0x00200000,1,0,quartz.dll,6.06.7600.16385
    SPDIF-liitäntä (SoundMAX Integr,0x00200000,1,0,quartz.dll,6.06.7600.16385
    EVR Power Information
    Current Setting: {5C67A112-A4C9-483F-B4A7-1D473BECAFDC} (Quality)
      Quality Flags: 2576
        Enabled:
        Force throttling
        Allow half deinterlace
        Allow scaling
        Decode Power Usage: 100
      Balanced Flags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 50
      PowerFlags: 1424
        Enabled:
        Force throttling
        Allow batching
        Force half deinterlace
        Force scaling
        Decode Power Usage: 0
    I also ad (attach file) result from Performance Test in jpg-format.
    Sami Malmberg

    Thanks for tips!
    We may have to clear up the hole computer. I have quite a lot videomaterial in hard-drive D, waiting for edit. In C there are basic brograms, Corel X4 and some players. Nothing bigger. Still, before that, now that "normal" HD editing is working quite well,  I wonder:
    Are CPU about  40% and Memory 4Gb values normal when I´m editing with CS4?
    Is my computer actual powerfull enough for Creative Suite CS4?
    Why in Earth are those 2D values so lame?
    Hard-drives are connected in SAT 3 and 4. Should they be connected in 1 & 2?
    First hard-drive (C:) shoud be very fast, 10 000rpm but in that performance test, and also in Windows hard-drive test results shows, why?
    Could problem be in my memory chips?
    And:
    In DxDiag-file, why there said that in display devices: Current Mode: 1920 x 1200 (32 bit) (59Hz) ?? Should it be 64Bit be cause displaycard is 64Bit??
    So many questions and so many possibilities...
    Thank you very much and sorry all my weird question but I´m about to explode becauise of this stupid machine!!! Arg!
    Sometimes I think that it would be better live in stoneage...
    Sami Malmberg
    ps. Check out hopepages of out feature film: www.yhtakyytia.com

  • Recently upgraded to a Canon Mark 3 and now having issues with my RAW files in Bridge and Photoshop. I am operating with CS4. Photoshop produces an error " Could not complete your request because photoshop does not recognize this type of file"

    Recently upgraded to a Canon Mark 3 and now having issues with my RAW files in Bridge and Photoshop. I have operating with CS4. Photoshop produces and error " Could not complete your request because photoshop does not recognize this type of file"

    Assuming you mean 5D Mark III, Photoshop CS4 cannot directly open raw files from your camera.
    Generally speaking, Adobe stopped updating older versions to be able to read raw files from newer cameras when they released a new major version of Photoshop. Photoshop CS4 is no longer receiving Camera Raw updates.
    You can double check this yourself:
    First you need to determine whether Adobe has released support for your new camera in your version of Photoshop. To do that, look at these two pages. You'll want to find out the earliest version of Camera Raw that can support your camera, then what version of Photoshop can run that version of Camera Raw.
    Camera Raw plug-in | Supported cameras
    Camera Raw-compatible Adobe applications
    If you find your camera is supported by your version of Photoshop, you need to download the latest update for Camera Raw. There's more information on how to do that here:
    Keeping Photoshop Up-To-Date
    If your version of Photoshop cannot support your camera, you can download and install the latest version of the free Adobe DNG Converter, which can take your raw files as input and put out DNG format files, which your version of Photoshop can open.
    Photoshop Help | Digital Negative (DNG)
    The DNG converter DOES work, but if you want maximal quality from your raw files (not to mention the convenience and ease of use of directly opening your raw files) you'll want the latest version of Photoshop. Adobe has made substantial improvements in raw conversion quality in recent years.
    -Noel

  • Plz help me. how i can use plugin with cs4

    I want to use,
    Carbon coder with adobe premiere cs4, how can i use it. it is not show in cs4.
    what can i do for it?
    Thanx in advance
    Regards
    Farrukh Shami
    Faisalabad Photographer

    It is actually export plugin in CS, CS2 and CS3 while it is not working with CS4.
    It has an excellent Quality with low size, like Blue ray video. And with this tool, video size become very low.
    In our country some photographers use it with Edius and premier pro. I dont know how to use edius etc.
    But in CS3 it makes many problems.
    Thanx for your help. I have seen your foto many times in many forums.Always your solutions are very good.

  • Issues With CS4 Installation on Win 8?

    I purchased CS4 (Web Premium) on  disc several years ago, and it has been working fine on my  Win XP computer ever since. The Adobe software has all the current  updates, though I am using the CS4 version of Acrobat Pro (9.xx) rather  than a more recent (free) version of Reader.,
    Unfortunately,  my computer's hard drive has fried, and I just purchased a new Windows 8  machine, which will arrive shortly.  I am trying to determine:
    1. Are there any general issues with CS4 installation on Win 8 that I should know about in advance?
    2. Are there specific procedures (de-activation?) that I need to follow BEFORE attempting the installation on the new computer?
    3. Other than specific user issues, are there problems with CS4 versus Windows 8 that I would not encounter with Windows 7.
    I  enhance photos and create web sites for a living, so the CS4  installation is mission-critical. I am hoping I did not make a mistake  in ordering a Win 8 machine...
    Thanks for any and all insights.

    OK, fair enough. Maybe someone who has actually experienced this situation (CS4 --> Win 8 machine) might see this and offer some tips to avoid hassles. But I will try the install as soon as I get the new machine and post any ensuing issues/problems here.
    As for de-activation of the previous installation on the XP machine, that is now impossible, as the hard-drive is fried. Unless there is a way to de-activate an installation some other way (without actually opening the programs).  That said, I AM able to access files on the fried harddrive, so if there is a specific file that controls de-activation, I could access it on the old machine.  However, I may not be able to actually RUN said file on that machine, but can copy it to a stick and move it elsewhere. So, any thoughts on deactivation of an installation on a deceased computer?

  • Can I create a photo gallery with CS4?

    I have CS4--Is it outdated, or can I still create a photo gallery to be loaded to a web site with CS4?
    Procedure?
    I have two galleries that I created with CS4 3 years ago....Is it still possible?
    Photoshop---Lightroom--Bridge?

    Yes. Use Bridge--output
    Creating a web photo gallery | Learn Adobe Bridge CS4 | Adobe TV

  • Can I take a frame from my project and use it as a custom menu background with CS4 and its Encore

    My project is edited in CS4.
    I moved it to Encore CS4.
    I don't want to use any of the supplied menu templates in CS4 Encore.
    I was hoping CS4 would be all I needed to create custom menus using scenes from my project.
    My question is: Can I take a frame from my project and use it as a custom menu background with CS4 and its built in Encore or do I need some other element from the Adobe catalog to make these custom chapter menus and sub-menus?
    Thanks Jim

    OK, I'm back. Here are my steps for creating Custom Menus with PS, En and PrPro:
    In PrPro, move the CTI (Current Time Indicator) to the desired Frame. Check Frames on either side, with the Program Monitor’s Magnification to 100%, or maybe even 200% (you’ll need to scroll, but get a really clear picture). You want the clearest Frame in that area. With AME, in CS4, you’ll want to Export that Frame as .TIFF, or .BMP. I use .TIFF for this.
    Now, for a caveat. When you Import this Exported Frame into Photoshop, be sure to check the specs., especially the PAR. You may have to use Image>PAR to adjust this to match your Project’s specs. Or, all might be perfect - just check this out.
    Now, at this point, I choose the Library Menu, Blank, so that everything is setup. One can create the Menu from scratch, but careful attention needs to be paid to the exact naming conventions. At the very least, unless you’ve done this dozens of times before, use that Blank Menu, or similar as a guide, so you get things done, as they must be done.
    Using that Blank Menu, just drag the Layer from your Exported Frame to your Menu image. It will appear above the black Background.
    Add, or manipulate your Button Layer Sets, as is required, keeping them together. Remember that Button #1 will be the Button Layer Set, that is lower down in the Layers Palette. This can play a roll with Button Routing, back in Encore. Lower Button Layer Sets will have lower Button numbers.
    Now, I always rename my Button Layer Sets, keeping the required characters - just changing the name. I also do all of my Button text in PS, and make sure to turn OFF Sync Button Names.
    When done, Save_As .PSD, and then Import_As_Menu into Encore. Note: if you start with the Blank Menu, you can choose Edit in Photoshop, and then when done in PS, you just need to Save, and it will update in Encore. This is a personal workflow choice. I do the Edit in Photoshop route, but it is not necessary. One just needs to Import the resulting .PSD into Encore with Import_As_Menu, so that Encore does all the things that it needs to and recognizes the .PSD as a Menu.
    When deciding what to base your Menu on, remember that you can "populate" your Menu with Buttons from the Functional Content. I’d suggest studying these Assets, and picking the ones that work best for you. You can still alter/edit those back in PS, so you just need to "get close."
    Pay special attention to the required naming conventions. You cannot deviate from those first characters in the Button Layer Sets. They MUST be followed.
    If you have any questions, do not hesitate to ask.
    Good luck,
    Hunt

  • Computer Crashed with CS4 - How can I get these programs to my new computer?

    Computer Crashed with CS4 - How can I get these programs to my new computer?

    You will want to install them from the installation media.

  • Mac Pro trapcode particular with Cs4 install problems

    hi
    im on mac with leo installed.I'm trying to install particular 1.5 with cs4 but no luck so far.
    it just doesnt show up in AE effects panel any ideas?
    thx

    There is only one installer.
    No, there isn't. If downloading the original ZIP file from Red Giant Software, it contains a set of sub-folders with different versions. CS4 is intel only. Unlike CS3 it does no longer support PPC code. Therefore any such plug-ins will not show up in CS4 unless you install the correct version, which is what you do when installing from the sub-folder I mentioned. So by all means, run that installer.
    Mylenium

  • Using Adobe PhotoShop CS4, I cannot add text to a new layer. It was always a snap with previous versions of OS 10. Has anyone else noticed issues with CS4 and Lion? Many thanks in advance. Pete Hendricks

    Using Adobe PhotoShop CS4, I cannot add text to a new layer. It was always a snap with previous versions of OS 10. Has anyone else noticed issues with CS4 and Lion? Many thanks in advance. Pete Hendricks

    Happy to report that iTunes Match has returned to working like normal on iTunes 10.7 on my computer today. If any iTunes engineers read this thread, I really appreciate the fix.
    Has it returned to normal for you?

  • Matrox RTX-2 with CS4

    Has anyone had experience with CS4 in combination with Matrox RTX-2 card?
    I have recently upgraded from PPro2, and found I never really used my RTX-2 for any of my client's projects in 2.0
    because I needed cross-platform compatibility with systems not equipped to support the Matrox encoded media.
    If there is no significant advantage I would be inclined to remove the giant card from my system,
    improve airflow, and put it up for sale on EBay.
    thanks

    We have 3 systems with RTx2 cards. I actually have been a beta tester for them from the old RTx100 days. In fact, I tested one of the first X2 boards before they were released. The RTx2 card is still a viable product to use with CS4. Matrox just released updated drivers that add Windows 7 support. If I were you, I would at least try a few projects with the Matrox card and the latest drivers. On our quad core system, captured native HDV mpeg2 files won't play back smoothly for a 4 camera multi-cam. Drop those same multicam clips in a Matrox project and they play back super smooth.
    For me, the RTx2 has been invaluable. We have done hundreds of projects on our RTx2 machines and for the most part, our systems are pretty stable. I am building a new system to replace the original computer I built for the RTx2. It was an older AMD dual core, and the new one will run Win 7 with an I7 proc and 24 gigs of ram with the ASUS supercomputer motherboard.
    Another thing to keep in mind is that even though Adobe plans on accelerating the next version of Premiere with the Nvidia CUDA graphics cards, you have to purchase the $1500 card to get some of the same real-time playback that the RTx2 offers. Granted, the Nvidia card will allow better playback of AVCHD, DSLR files and Red files, but the RTx2 came out before those formats became more of a standard. I think you will still see a need for the RTx2 as a good capture and output card going forward. Accelerated exports and real-time filters are an added bonus. Plus, with the ability to add a compressed HD card, you can export to blu-ray with lightning speed.
    Chris

  • Replacing text on a picture with CS4

    I have recently taken a (jpg) picture of a real estate sign and I have been asked to replace the agent's first name with another first name. Can this be done with CS4? How? Thanks in advance. HK

    It can be done with any version of Photoshop.
    Sample the background color of the sign behind/around the text you're replacing, then use that color to paint over the text. Then type the new text and size/skew it to fit the space on the sign.

  • I can't use some .avi files with CS4

    I have 2 computers. One with W7 64 bits and PP CS5 and a laptop with Vista 32bits, so I had to install PP CS4 provided with Adobe CS5-5 production premium.
    I have a problem with CS4 (as it works with my CS5): some.avi files are not read by CS4 as some other (.avi, .mp4, .m2ts) are read! I can install the file on the timeline, but only the sound is read, no pictures!
    I'm not a specialist in computer, neither in Premire Pro, and my english is very bad (Yes, I know, I'm french...) ! Any idea of what to do, please ?
    Thank you so much.

    I agree with Jim. Knowing what is inside those AVI files, that are faulting, will likely tell the tale.
    This article goes into a lot more detail on AVI (and MOV, etc.) as a "wrapper:" http://forums.adobe.com/thread/440037?tstart=0
    It is what's inside, that matters. It might be as simple as just installing the proper CODEC, or it might be that the CODEC used, is a delivery-only CODEC, like DivX, Xvid, and some others.
    Good luck, and please let us know a bit more.
    Hunt

Maybe you are looking for

  • Not able to see data in cube

    Hi all, I am having an issue with the cube data. I am trying to check the data in the cube which has many records loaded in it. While doing a display data , it doesnt show any records on the screen. I am not giving any filter criteria here. I tried t

  • Itunes 6 homesharing

    I cannot get homesharing to work on ITUNES 10.6.  My apple TV is 5.0 and works fine with my ipad remote.  However, neither my Ipad nor my apple tv can see the itunes library via homesharing.  I have tried everything i know.  I have disabled my firewa

  • Splitting - But still some characters exist to remove them - Help

    I am using the following code to split the text into words but the words containing "trees," still exist in the words that are obtained as output. Is there a way by which I could get rid of ,,;,:, &, !, in the text using the same line of code as give

  • Boot Error Sequence

    IdeaCentre K210 57078894 works fine until I completely shut it down and restart it.  I get errors like Boot Error Sequence, PXE-E53 No boot filename received, PXE-M0F.  When I go to the BIOS setup it says Primary IDE not detected.  Can anyone help fi

  • Lost pictures in Adobe Photoshop Starter 3.0

    I have not used my Adobe Photoshop Starter 3.0 in years.  H doqwn loaded pictures from my didital camera, and they downloaded to Adobe.  I try to open Adobe on my desktop, and a cover registeration form popped up.So I registered, and was sent an emai