Topic: Guide to use SVP with XBMC?

Hi

I am new to this project, and I love it!

But I would love if someone could write a little guide in english on how to use SVP with XBMC media center!
Most of the information I find is in russian!

Also, is it possible to use SVP with VLC player, and if so, how?

Thanks in advance for any answer that anyone can provide!

Re: Guide to use SVP with XBMC?

zappa79
Did you try to use online translation?

VLC Player can not use ffdShow. Thus it is not compatible to SVP.

Re: Guide to use SVP with XBMC?

You can use the SVP in conjunction with XBMC if you install the version with DSPlayer.
The latest version with the additions can be downloaded here http://depositfiles.com/files/1catka99o
This distribution is already configured to work with LAV and ffdshow.
Although I would advise to use my configs for XBMC.

<filtersconfig>
 <filters>
 <!-- Source -->
  <filter name="lavfsource" type="source">
   <path>LAVSplitter.ax</path>
   <guid>{B98D13E7-55DB-4385-A33D-09FD1BA26338}</guid>
   <osdname>LAV Splitter Source</osdname>
  </filter>
  <filter name="avsource" type="source">    
    <guid>{D8980E15-E1F6-4916-A10F-D7EB4E9E10B8}</guid>    
    <osdname>AV Source</osdname>
  </filter>
 <!-- Splitters -->
  <filter name="lavfsplitter" type="splitter">
   <path>LAVSplitter.ax</path>
   <guid>{171252A0-8820-4AFE-9DF8-5C92B2D66B04}</guid>
   <osdname>LAV Splitter</osdname>
  </filter>  
  <filter name="avsplitter" type="splitter">
   <guid>{529A00DB-0C43-4F5B-8EF2-05004CBE0C6F}</guid>
   <osdname>AV Splitter</osdname>
  </filter>
 <!-- Video -->
   <filter name="lavvideodec" type="videodec">
   <guid>{EE30215D-164F-4A92-A4EB-9D4C13390F9F}</guid>
   <osdname>LAV Video Decoder</osdname>
  </filter>
 <!-- Extra -->
  <filter name="ffdraw" type="extra">
     <guid>{0B390488-D80F-4A68-8408-48DC199F0E97}</guid>
     <osdname>FFdshow RAW</osdname>
  </filter>
 <!-- Audio -->
  <filter name="lavaudiodec" type="audiodec">
   <guid>{E8E73B6B-4CB3-44A4-BE99-4F7BCB96E491}</guid>
   <osdname>LAV Audio Decoder</osdname>
  </filter>
 </filters>
</filtersconfig>
<mediasconfig>
 <rules>  
  <rule filetypes="mkv|avi|mp4|m4v|flv|ts|mts">
   <source filter="lavfsource" />
   <splitter filter="lavfsplitter" />
   <video filter="lavvideodec" />   
   <audio filter="lavaudiodec" />
  <extra>
        <extra videoresolution="480|540|576|720" filter="ffdraw" />
   </extra>
  </rule>
  <rule filetypes="m2ts|bdmv|mpls">
   <source filter="avsource" />
   <splitter filter="avsplitter" />
   <video filter="lavvideodec" />   
   <audio filter="lavaudiodec" />
  <extra>
        <extra videoresolution="480|540|576|720" filter="ffdraw" />
   </extra>
  </rule>
 </rules>
</mediasconfig>

Configs are made with calculations that AVsplitter installed as a system and just settle into a folder LAVsplitter DSPlayer.
Substituting the resolution to the "extra" you can adjust the video resolution which will be applied smoothly.

If something is unclear, ask. I have now works fine.