Kodi Community Forum
Win HOW TO - Set up madVR for Kodi DSPlayer & External Players - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Tips, tricks, and step by step guides (https://forum.kodi.tv/forumdisplay.php?fid=110)
+--- Thread: Win HOW TO - Set up madVR for Kodi DSPlayer & External Players (/showthread.php?tid=259188)



RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - movie78 - 2016-12-17

(2016-12-16, 23:25)Warner306 Wrote:
(2016-12-16, 21:50)movie78 Wrote:
(2016-12-16, 20:47)Warner306 Wrote: If you have a good graphics card and want to use madVR, then try this.

Add this rule:

<playercorefactory>
<players>
<player name="MPC-HC" type="ExternalPlayer" audio="false" video="true">
<filename>C:\Program Files\MPC-HC\mpc-hc64.exe</filename>
<args>"{1}" /fullscreen /close</args>
<hidexbmc>false</hidexbmc>
<hideconsole>false</hideconsole>
<warpcursor>none</warpcursor>
<playcountminimumtime>1140</playcountminimumtime>
</player>
</players>
<rules action="prepend">
<rule filename=".*3D.*" player="MPC-HC" />
</rule>
</rules>
</playercorefactory>


Add this Rule in Kodi or MPC?

I have feeling 3D MVC doesn't work...

The first step is to try MPC-HC because madVR will play 3D but DSPlayer might not.

Could not see the playercorefactory.xml in the MPC directory I also try MPC with madVR 3D ISO or MKV and had the same results, everything playback as 2D.


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-17

(2016-12-17, 00:10)movie78 Wrote:
(2016-12-16, 23:25)Warner306 Wrote:
(2016-12-16, 21:50)movie78 Wrote: Add this Rule in Kodi or MPC?

I have feeling 3D MVC doesn't work...

The first step is to try MPC-HC because madVR will play 3D but DSPlayer might not.

Could not see the playercorefactory.xml in the MPC directory I also try MPC with madVR 3D ISO or MKV and had the same results, everything playback as 2D.

You may have hit a dead end and will have to go back to regular Kodi. Are you sure you picked the correct 3D format in madVR?


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-17

I ask to Warner362 , I have a file test 4K with video resolution 3840x1600 , how can I build a profile auto select rules for madvr ?


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-17

(2016-12-17, 16:46)gotham_x Wrote: I ask to Warner362 , I have a file test 4K with video resolution 3840x1600 , how can I build a profile auto select rules for madvr ?

if (deintFps <= 25) and (srcWidth > 1920) "2160p25"
else if (deintFps <= 25) and ((srcWidth <= 1920) and (srcHeight > 1080)) "2160p25"

if (deintFps > 25) and (srcWidth > 1920) "2160p60"
else if (deintFps > 25) and ((srcWidth <= 1920) and (srcHeight > 1080)) "2160p60"

else if (deintFps <= 25) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p25"
else if (deintFps <= 25) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p25"

else if (deintFps > 25) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p60"
else if (deintFps > 25) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p60"

else if (deintFps <= 25) and ((srcWidth > 960) and (srcWidth <= 1280)) "720p25"
else if (deintFps <= 25) and ((srcWidth <= 960) and (srcHeight > 540) and (srcHeight <= 720)) "720p25"

else if (deintFps > 25) and ((srcWidth > 960) and (srcWidth <= 1280)) "720p60"
else if (deintFps > 25) and ((srcWidth <= 960) and (srcHeight > 540) and (srcHeight <= 720)) "720p60"

else if (deintFps <= 25) and ((srcWidth <= 960) and (srcHeight <= 540)) "540p25"

else if (deintFps > 25) and ((srcWidth <= 960) and (srcHeight <= 540)) "540p60"


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-17

Warner362 , When it is reproduced the file test 3840x1600 ,madVR does the switch above profile that I have for 1080p , this profile 1080p has settings fixed for this profile , and not I want absolutely change for 3840x1600 , one that I try of understand , if there is the possibility of having a output 1080p for video resolution 3840x1600 different from that use as standard for the profile 1080p
I hope of be explained a better


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-17

(2016-12-17, 21:38)gotham_x Wrote: Warner362 , When it is reproduced the file test 3840x1600 ,madVR does the switch above profile that I have for 1080p , this profile 1080p has settings fixed for this profile , and not I want absolutely change for 3840x1600 , one that I try of understand , if there is the possibility of having a output 1080p for video resolution 3840x1600 different from that use as standard for the profile 1080p
I hope of be explained a better

Using the above, 2160p should be selected.


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-17

I applied the rules that you have equipped . Unfortunately the file test 3840x1600 it is reproduced on rules the profile 1080p


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-18

I'm a incorrigible careless , I had forgot of delete the rules previous in the field auto select rules for madvr.
for 1080p25,1080p60 and/or 2160p25,2160p60 that meaning from a resolution selected. ?
anyway Thanks so much.


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - movie78 - 2016-12-18

(2016-12-17, 00:15)Warner306 Wrote:
(2016-12-17, 00:10)movie78 Wrote:
(2016-12-16, 23:25)Warner306 Wrote: The first step is to try MPC-HC because madVR will play 3D but DSPlayer might not.

Could not see the playercorefactory.xml in the MPC directory I also try MPC with madVR 3D ISO or MKV and had the same results, everything playback as 2D.

You may have hit a dead end and will have to go back to regular Kodi. Are you sure you picked the correct 3D format in madVR?
Can you please show me 3D MVC working on yours?
Thanks!


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-18

with the new version LAV Filters 0.69 for reproduce 3D through madVR , is necessary installed 3D Plugin: libmfxsw32.dll to 'internal of folder LAV Filters 0.69 ?


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-18

(2016-12-18, 14:45)movie78 Wrote:
(2016-12-17, 00:15)Warner306 Wrote:
(2016-12-17, 00:10)movie78 Wrote: Could not see the playercorefactory.xml in the MPC directory I also try MPC with madVR 3D ISO or MKV and had the same results, everything playback as 2D.

You may have hit a dead end and will have to go back to regular Kodi. Are you sure you picked the correct 3D format in madVR?
Can you please show me 3D MVC working on yours?
Thanks!

I don't have any frame-packed 3D content. I downloaded one video and watched it as a test, but that was a long time ago. I've heard DSPlayer struggles with 3D playback for some users.


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-18

(2016-12-18, 16:35)gotham_x Wrote: with the new version LAV Filters 0.69 for reproduce 3D through madVR , is necessary installed 3D Plugin: libmfxsw32.dll to 'internal of folder LAV Filters 0.69 ?

I don't know. Haven't heard anything about LAV 0.69.


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-19

For play movies 3D through madVR , I applied the following rules ;

else if (3D) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p 3D"
else if (3D) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p 3D"

else if (not 3D) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p"
else if (not 3D) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p"

this rules and profile 1080p 3D not it is selected , it is selected the profile 1080p25 that has settings different , is possible obviate to this conflict for play movies 3D ?


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - Warner306 - 2016-12-19

(2016-12-19, 11:29)gotham_x Wrote: For play movies 3D through madVR , I applied the following rules ;

else if (3D) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p 3D"
else if (3D) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p 3D"

else if (not 3D) and ((srcWidth > 1280) and (srcWidth <= 1920)) "1080p"
else if (not 3D) and ((srcWidth <= 1280) and (srcHeight > 720) and (srcHeight <= 1080)) "1080p"

this rules and profile 1080p 3D not it is selected , it is selected the profile 1080p25 that has settings different , is possible obviate to this conflict for play movies 3D ?

I'm not sure. I don't have any 3D content to test.

Try this instead: (fileName = "*3D*.mkv")


RE: HOW TO - Set up madVR for Kodi DSPlayer & External Players - gotham_x - 2016-12-19

as and where should be applied this modification , perhaps here ? else if (fileName = "*3D*.mkv")
thanks.