Kodi Community Forum

Full Version: dsplayer shaders
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello... do you have any idea how can i access shaders sharpen filter directly inside xbmc dspplayer while playing a movie?

thanks in advance

PS: I´m using latest version of dsplayer and community codec
Shaders have to be added to your "mediasconfig.xml" found in the following directory

C:\Program Files\XBMC\system\players\dsplayer\

You need the id of the shader which your find in the "shaders.xml" found in the following directory

C:\Program Files\XBMC\system\players\dsplayer\Shaders\

For example if you wanted to add two shaders to avi files you would use the following

Code:
<rule filetypes="avi">
      <shaders>
        <shader id="21" />
        <shader id="18" />
      </shaders>    
      <source filter="avisource" />
      <splitter filter="avisplitter" />
      <video filter="mpcvideodec" />
      <audio filter="mpaaudiodec" />

Your find more info below but you could also search the original release and support thread both will give you answers to most of your questions

http://wiki.xbmc.org/index.php?title=HOW...rs_support