• 1
  • 180
  • 181
  • 182(current)
  • 183
  • 184
  • 523
Kodi DSPlayer – DirectShow Player for Windows
(2016-01-30, 18:33)danjames92 Wrote: lol user error is usually the way Tongue

Indeed lol!
Reply
A big Thank you for Wanilton for these updates. So Kodi 16 release will be the final version of Kodi DSPlayer? At this point, should I stop automatic update of add-ons to avoid any incompatibilties?
Reply
(2016-01-30, 11:29)gotham_x Wrote: Can anyone give me a straight, In Scaling Algorithms madVR, I have 3 active profiles, 1080p, 720p and SD, I would create a quarter profile to only content at 1080p / 3D

Obviously, the profile created for 1080p, is only for 2D content, with a setting NNEDI3 / 128 Neurons, that my GTX970, playing you have about 30 ms of total rendering, is a fairly high but still below the FRAME 41ms. NO dropped frames.

After this introduction, I come to the issue.

the problem comes to light when I play back 1080p content / 3D content with ripped MakeMKV for 3D.

3D content reproduced hooks profile 1080p / 2D madVR and with the above settings have a very high value of dropped frames, about 68ms rendering total.

For this reason, I would like to create a profile 1080p / 3D, with settings more conservative, that when content is played 1080p / 3D, is NOT hooked profile 1080p / 2D, but the profile 1080p / 3D madVR.

I ask, is' possible to do this, with the rules only for 3D content, with what rules?

thanks.

Does the "3D" boolean operator work? If so, try this:

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

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

else if (srcWidth > 960) and (srcWidth <= 1280) "720p"
else if (srcWidth <= 960) and ((srcHeight > 540) and (srcHeight <= 720)) "720p"

else if (srcWidth <= 960) and (srcHeight <= 540) "SD"


I'm not sure if that is correct, but you can try it.
Reply
(2016-01-30, 19:30)IT007 Wrote: A big Thank you for Wanilton for these updates. So Kodi 16 release will be the final version of Kodi DSPlayer? At this point, should I stop automatic update of add-ons to avoid any incompatibilties?

No, I think the add-on considers what version of Kodi you are using.
Reply
Hi Peeps,

First time user of MadVR, not sure why it's taken me so long to try it out .. . it looks amazing!!
I have a couple of client HTPC which are Mac Mini (late 2012) and I'm running into a couple of issues.

1. When playing a video and bringing up any Kodi GUI over top, the GUI is flickering like crazy.

2. This one is doing my head in. I am trying to passthrough DTS and its not working. I have enabled the bitstreaming on all formats. All works fine using Kodi without MadRV. I have tested MadRV with MPC-HC and this also works fine. Any pointers here?
It appears AC3 DD is working fine (FIXED THIS ISSUE NOW)


Cheers
Reply
(2016-01-30, 22:50)Douganator Wrote: Hi Peeps,

First time user of MadVR, not sure why it's taken me so long to try it out .. . it looks amazing!!
I have a couple of client HTPC which are Mac Mini (late 2012) and I'm running into a couple of issues.

1. When playing a video and bringing up any Kodi GUI over top, the GUI is flickering like crazy.

2. This one is doing my head in. I am trying to passthrough DTS and its not working. I have enabled the bitstreaming on all formats. All works fine using Kodi without MadRV. I have tested MadRV with MPC-HC and this also works fine. Any pointers here?
It appears AC3 DD is working fine (FIXED THIS ISSUE NOW)


Cheers

1. Not sure. Change the presentation path in madVR general settings from D3D11 to D3D9, or vice versa. Also, use one of the Jarvis test builds provided by Wanilton if using Isengard.

The flashing could be an issue with the underlying Mac hardware, but I don't know. Could also be a driver issue if using Windows 10, which would require a driver update. This was happening to other Intel iGPU users at one time, but was fixed.

2. Use Sanear as the audio renderer (this is the same as the "Internal audio renderer" in MPC-HC).

Run the installer. Choose as renderer in DSPlayer settings. Play a video. Minimize Kodi and select the Sanear tray icon. Here, choose Exclusive Mode and Allow bitstreaming. Also, all formats should be checked in LAV Audio.
Reply
(2016-01-30, 22:20)Warner306 Wrote:
(2016-01-30, 11:29)gotham_x Wrote: Can anyone give me a straight, In Scaling Algorithms madVR, I have 3 active profiles, 1080p, 720p and SD, I would create a quarter profile to only content at 1080p / 3D

Obviously, the profile created for 1080p, is only for 2D content, with a setting NNEDI3 / 128 Neurons, that my GTX970, playing you have about 30 ms of total rendering, is a fairly high but still below the FRAME 41ms. NO dropped frames.

After this introduction, I come to the issue.

the problem comes to light when I play back 1080p content / 3D content with ripped MakeMKV for 3D.

3D content reproduced hooks profile 1080p / 2D madVR and with the above settings have a very high value of dropped frames, about 68ms rendering total.

For this reason, I would like to create a profile 1080p / 3D, with settings more conservative, that when content is played 1080p / 3D, is NOT hooked profile 1080p / 2D, but the profile 1080p / 3D madVR.

I ask, is' possible to do this, with the rules only for 3D content, with what rules?

thanks.

Does the "3D" boolean operator work? If so, try this:

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

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

else if (srcWidth > 960) and (srcWidth <= 1280) "720p"
else if (srcWidth <= 960) and ((srcHeight > 540) and (srcHeight <= 720)) "720p"

else if (srcWidth <= 960) and (srcHeight <= 540) "SD"


I'm not sure if that is correct, but you can try it.

Warner306, excuse me, I care too much to understand and I would not go to a question "superficial" how can I tell if it works Boolean operator "3D" Huh
Reply
(2016-01-31, 00:45)Warner306 Wrote:
(2016-01-30, 22:50)Douganator Wrote: Hi Peeps,

First time user of MadVR, not sure why it's taken me so long to try it out .. . it looks amazing!!
I have a couple of client HTPC which are Mac Mini (late 2012) and I'm running into a couple of issues.

1. When playing a video and bringing up any Kodi GUI over top, the GUI is flickering like crazy.

2. This one is doing my head in. I am trying to passthrough DTS and its not working. I have enabled the bitstreaming on all formats. All works fine using Kodi without MadRV. I have tested MadRV with MPC-HC and this also works fine. Any pointers here?
It appears AC3 DD is working fine (FIXED THIS ISSUE NOW)


Cheers

1. Not sure. Change the presentation path in madVR general settings from D3D11 to D3D9, or vice versa. Also, use one of the Jarvis test builds provided by Wanilton if using Isengard.

The flashing could be an issue with the underlying Mac hardware, but I don't know. Could also be a driver issue if using Windows 10, which would require a driver update. This was happening to other Intel iGPU users at one time, but was fixed.

2. Use Sanear as the audio renderer (this is the same as the "Internal audio renderer" in MPC-HC).

Run the installer. Choose as renderer in DSPlayer settings. Play a video. Minimize Kodi and select the Sanear tray icon. Here, choose Exclusive Mode and Allow bitstreaming. Also, all formats should be checked in LAV Audio.


Thanks for the reply, guess I should have quoted my system specs.

Mac Mini
HD 3000 intel GPU
Windows 7
Kodi Jarvis RC2 + dsplayer

"Change the presentation path in madVR general settings from D3D11 to D3D9" unsure where to find this setting?


Also, after install this Kodi Jarvis RC2 + dsplayer build I have no PVR Add-ons, they have all gone. How do get these back?

Thanks again
Reply
(2016-01-31, 01:56)Douganator Wrote:
(2016-01-31, 00:45)Warner306 Wrote:
(2016-01-30, 22:50)Douganator Wrote: Hi Peeps,

First time user of MadVR, not sure why it's taken me so long to try it out .. . it looks amazing!!
I have a couple of client HTPC which are Mac Mini (late 2012) and I'm running into a couple of issues.

1. When playing a video and bringing up any Kodi GUI over top, the GUI is flickering like crazy.

2. This one is doing my head in. I am trying to passthrough DTS and its not working. I have enabled the bitstreaming on all formats. All works fine using Kodi without MadRV. I have tested MadRV with MPC-HC and this also works fine. Any pointers here?
It appears AC3 DD is working fine (FIXED THIS ISSUE NOW)


Cheers

1. Not sure. Change the presentation path in madVR general settings from D3D11 to D3D9, or vice versa. Also, use one of the Jarvis test builds provided by Wanilton if using Isengard.

The flashing could be an issue with the underlying Mac hardware, but I don't know. Could also be a driver issue if using Windows 10, which would require a driver update. This was happening to other Intel iGPU users at one time, but was fixed.

2. Use Sanear as the audio renderer (this is the same as the "Internal audio renderer" in MPC-HC).

Run the installer. Choose as renderer in DSPlayer settings. Play a video. Minimize Kodi and select the Sanear tray icon. Here, choose Exclusive Mode and Allow bitstreaming. Also, all formats should be checked in LAV Audio.


Thanks for the reply, guess I should have quoted my system specs.

Mac Mini
HD 3000 intel GPU
Windows 7
Kodi Jarvis RC2 + dsplayer

"Change the presentation path in madVR general settings from D3D11 to D3D9" unsure where to find this setting?


Also, after install this Kodi Jarvis RC2 + dsplayer build I have no PVR Add-ons, they have all gone. How do get these back?

Thanks again

Try this post. madVR -> general settings has a checkbox toggle for D3D11 presentation and other settings that can impact basic playback.

I have a laptop with an HD 3000 and it is still running DSPlayer without issue.
Reply
Warner306, the fact remains that I can not understand if Does the "3D" boolean operators work.

However, I have done so, proof noob.

1 deleted the old rules (select Profile car rules)
2 created the new profile 3D - 4 profiles (1080p, 720p, SD and 3D)
3 entered with copy and paste the new rules that you have kindly supplied

As you can see from screenschot that I enclose.

Unknown Boolean field 3D

Image
Reply
(2016-01-31, 10:53)gotham_x Wrote: Warner306, the fact remains that I can not understand if Does the "3D" boolean operators work.

However, I have done so, proof noob.

1 deleted the old rules (select Profile car rules)
2 created the new profile 3D - 4 profiles (1080p, 720p, SD and 3D)
3 entered with copy and paste the new rules that you have kindly supplied

As you can see from screenschot that I enclose.

Unknown Boolean field 3D

Image

Your 3D profile has to match the rule created. "3D" should be named "1080p 3D". Change that profile group, and the rule should work.
Reply
Does not work.
Image
Reply
(2016-01-31, 23:54)gotham_x Wrote: Does not work.
Image

Oh, sorry. I haven't had a chance to use my laptop to test these rules.

Try (3D) instead of (= 3D). I think (not 3D) is Ok for the other rule.
Reply
It seems that this operator NOT fit

Image
Reply
gotham_x, if I'm not mistaken you are using "=3D" in the second line of your rules.

Edit: madshi here states:

if (3D) "3D Profile" else "2D Profile"
For troubleshooting and bug reporting please make sure you read this first (usually it's enough to follow instructions in the second post).
Reply
  • 1
  • 180
  • 181
  • 182(current)
  • 183
  • 184
  • 523

Logout Mark Read Team Forum Stats Members Help
Kodi DSPlayer – DirectShow Player for Windows47