|
|

楼主 |
发表于 2004-7-19 18:51:29
|
显示全部楼层
1,修改codecs.conf可以;
比如,对rmvb文件希望使用win32解码器而不是linux的,
则要修改codecs.conf这一段:
- #videocodec rv40
- # info "Linux RealPlayer 9 RV40 decoder"
- # status working
- # fourcc RV40,rv40
- # driver realvid
- # dll "drv4.so.6.0"
- # out I420
-
- videocodec rv40win
- info "Win32 RealPlayer 9 RV40 decoder"
- status working
- fourcc RV40,rv40
- driver realvid
- dll "drv43260.dll"
- out I420
复制代码
其中rv40是linux解码器,而rv40win是win32解码器,
将rv40一段注销,
则遇到rv40格式的文件,
自动使用win32的解码器;
在codecs.conf中,下面的rv30/rv30win, rv20/rv20win同理;相应的对于wma/wmv文件也可以使用同样的方法,前提是安装了win32的解码器。 |
|