admin 发表于 2012-9-6 15:32:07

Avid Media Composer 5.5 用游戏显卡进行加速方法

MC默认只是可以用quadro进行加速,其实我们通过修改也可以对游戏卡支持,不过好像也就新的性能比较好的显卡有作用,老点的显卡能开但是几乎没加速作用
我就用刚买来了的GTX460配合MC5.5.3来说明一下吧!!
其实只要修改Media Composer 的安装目录里下的\SupportingFiles\Config文件夹下的 QualifiedGpuBoards.txt 文件:
双击打开,我们会看到下面

;=====================================================================================
;Copyright 2008 Avid Technology, Inc.
;All Rights Reserved
;
;This file contains the list of qualified GPU cards for both MAC & PC.
;=====================================================================================
;
;Description:
; - April 29 2008: UDevC00098019: Remove 4600 & 5600 from the list and leave only the 3700 for now.
; - Sept. 10 2008: UDevC00111492: Add driver version qualification (169.47).
;
;=====================================================================================
;NOTE: Qualified board must be described as: "Full_name : Vendor_name : Model_number : Driver_version".
;NOTE: Board description without full nomenclature is not registered.
;NOTE: You can get your board description with console command "acplgpueffects".
;NOTE: If driver version is omitted, then all driver versions are accepted.
;NOTE: If multiple driver version are supported, use multiple lines.
;=====================================================================================
;
PC_SUPPORTED_CARDS ; Token that indicates the start of the list of qualified cards on PC
;For Quadro FX, the preferred driver is 190.38.
;For Quadro, the driver is 259.77.
;A few people have been hit by a 190.38 driver crash on Win7/Vista with FX3800/FX4800. If this happens, use 259.57
;
;NVIDIA Corporation--Quadro FX 4600/PCI/SSE2 : NVIDIA : 4600 : 190.38
;NVIDIA Corporation--Quadro FX 5600/PCI/SSE2 : NVIDIA : 5600 : 190.38
NVIDIA Corporation--Quadro FX 3700/PCI/SSE2 : NVIDIA : 3700 : 190.38
NVIDIA Corporation--Quadro FX 3800/PCI/SSE2 : NVIDIA : 3800 : 190.38
NVIDIA Corporation--Quadro FX 4800/PCI/SSE2 : NVIDIA : 4800 : 190.38
;
NVIDIA Corporation--Quadro FX 3800/PCI/SSE2 : NVIDIA : 3800 : 259.77
NVIDIA Corporation--Quadro FX 4800/PCI/SSE2 : NVIDIA : 4800 : 259.77
;NVIDIA Corporation--Quadro 5000/PCI/SSE2 : NVIDIA : 5000 : 259.77
NVIDIA Corporation--Quadro 4000/PCI/SSE2 : NVIDIA : 4000 : 259.77
NVIDIA Corporation--Quadro 2000/PCI/SSE2 : NVIDIA : 2000 : 259.77
;
;=====================================================================================
;
MAC_SUPPORTED_CARDS ; Token that indicates the start of the list of qualified cards on MAC
;
;NVIDIA Corporation--NVIDIA GeForce 8800 GT OpenGL Engine : NVIDIA : 8800
从这个文件看出,MC只是根据这个表来开启显卡加速的,
所有只要把自己的显卡的   完整名称 , 厂商名称,型号字符串,以及你安装的的显卡驱动版本 添加到这个文本稳当里即可,
像我的显卡是GeForce GTX 460 ,我安装的驱动版本是 280.26,就要增加两个代码,
;For GeForce GTX, the driver is 280.26.
复制代码
NVIDIA Corporation--GeForce GTX 460/PCI/SSE2 : NVIDIA : 460 : 280.26
复制代码
;=====================================================================================
;Copyright 2008 Avid Technology, Inc.
;All Rights Reserved
;
;This file contains the list of qualified GPU cards for both MAC & PC.
;=====================================================================================
;
;Description:
; - April 29 2008: UDevC00098019: Remove 4600 & 5600 from the list and leave only the 3700 for now.
; - Sept. 10 2008: UDevC00111492: Add driver version qualification (169.47).
;
;=====================================================================================
;NOTE: Qualified board must be described as: "Full_name : Vendor_name : Model_number : Driver_version".
;NOTE: Board description without full nomenclature is not registered.
;NOTE: You can get your board description with console command "acplgpueffects".
;NOTE: If driver version is omitted, then all driver versions are accepted.
;NOTE: If multiple driver version are supported, use multiple lines.
;=====================================================================================
;
PC_SUPPORTED_CARDS ; Token that indicates the start of the list of qualified cards on PC
;For Quadro FX, the preferred driver is 190.38.
;For Quadro, the driver is 259.77.
;For GeForce GTX, the driver is 280.26.
;A few people have been hit by a 190.38 driver crash on Win7/Vista with FX3800/FX4800. If this happens, use 259.57
;
;NVIDIA Corporation--Quadro FX 4600/PCI/SSE2 : NVIDIA : 4600 : 190.38
;NVIDIA Corporation--Quadro FX 5600/PCI/SSE2 : NVIDIA : 5600 : 190.38
NVIDIA Corporation--Quadro FX 3700/PCI/SSE2 : NVIDIA : 3700 : 190.38
NVIDIA Corporation--Quadro FX 3800/PCI/SSE2 : NVIDIA : 3800 : 190.38
NVIDIA Corporation--Quadro FX 4800/PCI/SSE2 : NVIDIA : 4800 : 190.38
;
NVIDIA Corporation--Quadro FX 3800/PCI/SSE2 : NVIDIA : 3800 : 259.77
NVIDIA Corporation--Quadro FX 4800/PCI/SSE2 : NVIDIA : 4800 : 259.77
;NVIDIA Corporation--Quadro 5000/PCI/SSE2 : NVIDIA : 5000 : 259.77
NVIDIA Corporation--Quadro 4000/PCI/SSE2 : NVIDIA : 4000 : 259.77
NVIDIA Corporation--Quadro 2000/PCI/SSE2 : NVIDIA : 2000 : 259.77
;
NVIDIA Corporation--GeForce GTX 460/PCI/SSE2 : NVIDIA : 460 : 280.26
;
;=====================================================================================
;
MAC_SUPPORTED_CARDS ; Token that indicates the start of the list of qualified cards on MAC
;
;NVIDIA Corporation--NVIDIA GeForce 8800 GT OpenGL Engine : NVIDIA : 8800

修改完毕之后保存,我们打开MC吧

页: [1]
查看完整版本: Avid Media Composer 5.5 用游戏显卡进行加速方法