Kodi Community Forum
Kodi DSPlayer – DirectShow Player for Windows - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: Windows (https://forum.kodi.tv/forumdisplay.php?fid=59)
+---- Thread: Kodi DSPlayer – DirectShow Player for Windows (/showthread.php?tid=223175)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523


RE: Kodi DSPlayer – DirectShow Player for Windows - giorusso1964 - 2016-05-01

(2016-04-30, 13:53)Wanilton Wrote: Please, post code available in your playercorefactory.xml file for I compare with native.
....this the one from previous 16.1 rc2 and the one that works on my installation...

Code:
<?xml version="1.0" encoding="UTF-8"?>
<playercorefactory>
  <players>
    <!-- These are compiled-in as re-ordering them would break scripts
    The following aliases may also be used:
      audiodefaultplayer, videodefaultplayer, videodefaultdvdplayer
    <player name="DVDPlayer" audio="true" video="true" />
    <player name="DVDPlayer" /> placeholder for MPlayer
    <player name="PAPlayer" audio="true" />
    -->
  </players>

  <rules name="system rules">
    <rule name="mms/udp" protocols="mms|mmsh|udp" player="DVDPlayer" />
    <rule name="lastfm/shout" protocols="lastfm|shout" player="PAPlayer" />
    <rule name="rtmp" protocols="rtmp" player="videodefaultplayer" />

    <!-- dvdplayer can play standard rtsp streams -->
    <rule name="rtsp" protocols="rtsp" filetypes="!(rm|ra)"  player="PAPlayer" />

    <!-- Internet streams -->
    <rule name="streams" internetstream="true">
      <rule name="aacp/sdp" mimetypes="audio/aacp|application/sdp" player="DVDPlayer" />
      <rule name="mp2" mimetypes="application/octet-stream" filetypes="mp2" player="PAPlayer" />
    </rule>

    <!-- DVDs -->
    <rule name="dvd" dvd="true" player="DVDPlayer" />
    <rule name="dvdimage" dvdimage="true" player="DVDPlayer" />

    <!-- Only dvdplayer can handle these normally -->
    <rule name="sdp/asf" filetypes="sdp|asf" player="DVDPlayer" />

    <!-- Pass these to dvdplayer as we do not know if they are audio or video -->
    <rule name="nsv" filetypes="nsv" player="DVDPlayer" />

    <!-- pvr radio channels should be played by dvdplayer because they need buffering -->
    <rule name="radio" filetypes="pvr" filename=".*/radio/.*" player="DVDPlayer" />
  </rules>
</playercorefactory>



RE: Kodi DSPlayer – DirectShow Player for Windows - Uoppi - 2016-05-01

As I want to bypass DVDPlayer completely, is the simple rule <player name="DSPlayer" /> enough or is there some specific reason to add the "true" booleans for video and audio? So far everything seems to work.


RE: Kodi DSPlayer – DirectShow Player for Windows - Warner306 - 2016-05-02

I noticed DSPlayer is no longer the default player for video addons. This may require a new playercorefactory.xml for any user wanting to use LAV Splitter Source.


RE: Kodi DSPlayer – DirectShow Player for Windows - Wanilton - 2016-05-02

Error mine, I need recreate install, playcorefactory.xml is wrong, used by aracnoz is

Program files\kodi\system\playcorefactory.xml change for this for fix.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<playercorefactory>
  <players>
    <!-- These are compiled-in as re-ordering them would break scripts
    The following aliases may also be used:
      audiodefaultplayer, videodefaultplayer, videodefaultdvdplayer
    <player name="DVDPlayer" audio="true" video="true" />
    <player name="DVDPlayer" /> placeholder for MPlayer
    <player name="PAPlayer" audio="true" />
    -->
  </players>

  <rules name="system rules">
    <rule name="mms/udp" protocols="mms|mmsh|udp" player="DVDPlayer" />
    <rule name="lastfm/shout" protocols="lastfm|shout" player="PAPlayer" />
    <rule name="rtmp" protocols="rtmp" player="videodefaultplayer" />

    <!-- dvdplayer can play standard rtsp streams -->
    <rule name="rtsp" protocols="rtsp" filetypes="!(rm|ra)"  player="PAPlayer" />

    <!-- Internet streams -->
    <rule name="streams" internetstream="true">
      <rule name="aacp/sdp" mimetypes="audio/aacp|application/sdp" player="DVDPlayer" />
      <rule name="mp2" mimetypes="application/octet-stream" filetypes="mp2" player="PAPlayer" />
    </rule>

    <!-- DVDs -->
    <rule name="dvd" dvd="true" player="DVDPlayer" />
    <rule name="dvdimage" dvdimage="true" player="DVDPlayer" />

    <!-- Only dvdplayer can handle these normally -->
    <rule name="sdp/asf" filetypes="sdp|asf" player="DVDPlayer" />

    <!-- Pass these to dvdplayer as we do not know if they are audio or video -->
    <rule name="nsv" filetypes="nsv" player="DVDPlayer" />

    <!-- pvr radio channels should be played by dvdplayer because they need buffering -->
    <rule name="radio" filetypes="pvr" filename=".*/radio/.*" player="DVDPlayer" />
  </rules>
</playercorefactory>

I will create another install, tomorrow.


RE: Kodi DSPlayer – DirectShow Player for Windows - Wanilton - 2016-05-02

Kodi Jarvis 16.1 + dsplayer * (05/02/2016)

link for download:

https://dl.dropboxusercontent.com/u/77993366/KodiSetup-jarvis.16.1.dsplayer-final-05.02.2016.08.05.dx11.exe

Update internal lav filters for version 0.68.

Included latest changes make by aracnoz + latest comits by Kodi Team.

Warnings:
- This is an unofficial Kodi build not from Team Kodi.
- This build comes with no warranties, explicit or implied, and you use it at your own risk.
- This build was compiled by Wanilton, for use only in Windows OS, and have same functions official Kodi Jarvis build Nightly + dsplayer support.

git:

https://github.com/mediaBrasil/xbmc/tree/master_dsplayer


RE: Kodi DSPlayer – DirectShow Player for Windows - Uoppi - 2016-05-02

(2016-05-02, 00:51)Warner306 Wrote: I noticed DSPlayer is no longer the default player for video addons. This may require a new playercorefactory.xml for any user wanting to use LAV Splitter Source.

Yeah, I was confused because I couldn't remember ever needing to tweak my playercorefactory.xml - but then I thought maybe I had in fact modified it at some point and that now the file had for some reason been overwritten during an update. Confused

Anyway the fix seems to have been easy enough even for a "non-coder" like me: just using a simple DSPlayer rule without any modifiers seems to be enough.


RE: Kodi DSPlayer – DirectShow Player for Windows - oldpoem - 2016-05-02

(2016-05-01, 20:57)Uoppi Wrote: As I want to bypass DVDPlayer completely, is the simple rule <player name="DSPlayer" /> enough or is there some specific reason to add the "true" booleans for video and audio? So far everything seems to work.
There are some situation that DVDPlayer works MUCH better than DSPlayer. But you might not use it regularly or at all. Such as streaming with other protocol other than http/https. Streaming live stream in many cases / hosts works much better with DVDPlayer than DSPlayer because DVDPlayer has more tolerant in errors. Also DSPlayer hardly works with ISO file.

But if you don't regularly fall in those situation and only streaming from some fast site like youtube. It should be suffice to use that simple rule.

Sent from my Redmi Note 3


RE: Kodi DSPlayer – DirectShow Player for Windows - DragonQ - 2016-05-02

(2016-05-02, 13:11)Wanilton Wrote: Kodi Jarvis 16.1 + dsplayer * (05/02/2016)

link for download:

https://dl.dropboxusercontent.com/u/77993366/KodiSetup-jarvis.16.1.dsplayer-final-05.02.2016.08.05.dx11.exe

Update internal lav filters for version 0.68.

Included latest changes make by aracnoz + latest comits by Kodi Team.

Warnings:
- This is an unofficial Kodi build not from Team Kodi.
- This build comes with no warranties, explicit or implied, and you use it at your own risk.
- This build was compiled by Wanilton, for use only in Windows OS, and have same functions official Kodi Jarvis build Nightly + dsplayer support.

git:

https://github.com/mediaBrasil/xbmc/tree/master_dsplayer

Windows Defender detected this as Trojan:Win32/Varpes.M!cl.


RE: Kodi DSPlayer – DirectShow Player for Windows - vicmanpergar - 2016-05-02

(2016-05-02, 20:30)DragonQ Wrote:
(2016-05-02, 13:11)Wanilton Wrote: Kodi Jarvis 16.1 + dsplayer * (05/02/2016)

link for download:

https://dl.dropboxusercontent.com/u/77993366/KodiSetup-jarvis.16.1.dsplayer-final-05.02.2016.08.05.dx11.exe

Update internal lav filters for version 0.68.

Included latest changes make by aracnoz + latest comits by Kodi Team.

Warnings:
- This is an unofficial Kodi build not from Team Kodi.
- This build comes with no warranties, explicit or implied, and you use it at your own risk.
- This build was compiled by Wanilton, for use only in Windows OS, and have same functions official Kodi Jarvis build Nightly + dsplayer support.

git:

https://github.com/mediaBrasil/xbmc/tree/master_dsplayer

Windows Defender detected this as Trojan:Win32/Varpes.M!cl.

I have it installed and running.


RE: Kodi DSPlayer – DirectShow Player for Windows - stoolzo - 2016-05-03

i cant get any of the while playing video settings to work in any version, latest version, nice to see 3D MVC finally working its playing movies in the wrong eye format and as the while playing video settings do nothing this cant be changed.

really glitchy playback too (3d MKV MVC rips), going to have to go back to other version, although the while playing option wont working in any version i've tried, why?

Jarvis on all builds has a tendency to hang in task after closing forcing a reboot before it will run again, anyone else noticed this?


RE: Kodi DSPlayer – DirectShow Player for Windows - Warner306 - 2016-05-03

(2016-05-03, 02:30)stoolzo Wrote: i cant get any of the while playing video settings to work in any version, latest version, nice to see 3D MVC finally working its playing movies in the wrong eye format and as the while playing video settings do nothing this cant be changed.

really glitchy playback too (3d MKV MVC rips), going to have to go back to other version, although the while playing option wont working in any version i've tried, why?

Jarvis on all builds has a tendency to hang in task after closing forcing a reboot before it will run again, anyone else noticed this?

Adjust 3D settings with the madVR control panel (found on the Windows Taskbar) during playback.

Set DSPlayer to "Load from active madVR profile" to access the madVR settings menu from DSPlayer.


RE: Kodi DSPlayer – DirectShow Player for Windows - stoolzo - 2016-05-03

something broke when i installed the latest version cant play an mvc now


RE: Kodi DSPlayer – DirectShow Player for Windows - Warner306 - 2016-05-03

(2016-05-02, 13:11)Wanilton Wrote: Kodi Jarvis 16.1 + dsplayer * (05/02/2016)

link for download:

https://dl.dropboxusercontent.com/u/77993366/KodiSetup-jarvis.16.1.dsplayer-final-05.02.2016.08.05.dx11.exe

Update internal lav filters for version 0.68.

Included latest changes make by aracnoz + latest comits by Kodi Team.

Warnings:
- This is an unofficial Kodi build not from Team Kodi.
- This build comes with no warranties, explicit or implied, and you use it at your own risk.
- This build was compiled by Wanilton, for use only in Windows OS, and have same functions official Kodi Jarvis build Nightly + dsplayer support.

git:

https://github.com/mediaBrasil/xbmc/tree/master_dsplayer

This build still plays video addons with DVDPlayer. Perhaps aracnoz changed this? DSPlayer is more stable this way and you can defeat this by changing playercorefactory.xml. But this behaviour is new.


RE: Kodi DSPlayer – DirectShow Player for Windows - Uoppi - 2016-05-03

Has anyone encountered stability issues with Youtube, for example, using DSPlayer and internal LAV filters?

Just curious to know what kind of add-ons are unstable. DSPlayer has been admirably stable in all of my use for months (and all this time on Win 10, which I've read is supposed to be a pain in the ass). Granted, I only use a couple of add-ons, Youtube included. Anyway, no need for DVDPlayer so far and the simple playercorefactory.xml "fix" prevents it from ever accidentally launching.

Really hoping we can keep enjoying DSPlayer in the future too because this thing is throwing some serious eye candy at me! Love


RE: Kodi DSPlayer – DirectShow Player for Windows - Cinder - 2016-05-03

Anyone notice a strange behavior with the YouTube add-on? When I play a video by just selecting it and pressing enter, it doesn't play with DSPlayer (I have DSPlayer running SVP, so its easy to tell). I need to go in the context menu and select "Play using..." and "DSPlayer (Default)", then the video plays with DSPlayer and SVP interpolation. Why does it do that since DSPlayer should be the default player judging by the context menu? Is this a DSPlayer issue, or does it hail from the YouTube addon or something else?