Kodi Community Forum

Full Version: Kodi DSPlayer – DirectShow Player for Windows
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 524
(2015-06-07, 23:01)nedge2k Wrote: [ -> ]Works well for me, with 2 small issues...

-Occasional crash during a long programme (i.e. F1)
The crash happens with MadVR or EVR ?
Is this happens only when you watch live tv? Did you tried to play media files?

(2015-06-07, 23:01)nedge2k Wrote: [ -> ]-Cannot play recorded programme while it is still recording
You have to change "Streaming method" to "ffmpeg" in MP Addon settings.

New DSPlayer rules:

mediasconfig.xml rules:
Code:
<mediasconfig>
    <rules>
        <rule filetypes="mkv|avi|divx|ogm|mp4|mov|m4v|flv|m2v|mpeg|mpg|mts|m2ts|bdmv">
            <source filter="lavsource" />
            <splitter filter="lavsplitter" />
            <video filter="lavvideo" />
            <audio filter="lavaudio" />
        </rule>
        <rule filetypes="wmv">
            <source filter="wmasfreader" />
            <splitter filter="wmasfreader" />
            <video filter="wmvideodecoder" />
            <audio filter="wmaudiodecoder" />
        </rule>
        <!-- You need Real Alternative in order to read real media files -->
        <rule filetypes="rmvb">
            <source filter="realsource" />
            <splitter filter="realsplitter" />
            <video filter="realvideodec" />
            <audio filter="realaudiodec" />
        </rule>
        <!-- Rules for .ts files  -->
        <rule filetypes="ts">
            <source filter="tsreader" />
            <splitter filter="tsreader" />
            <video filter="lavvideo" />
            <audio filter="lavaudio" />
        </rule>
        <!-- Rules for rtsp stream  -->
        <rule protocols="rtsp">
            <video filter="lavvideo" />
            <audio filter="lavaudio" />
        </rule>
        <rule url="true" protocols="rtsp">
            <source filter="tsreader" />
        </rule>
    </rules>
</mediasconfig>

playercorefactory.xml
Code:
<playercorefactory>
    <rules action="prepend">
        <rule protocols="daap|rtv|rtmp|http|https|rtmpe|mms|rtp" player="DVDPlayer" />
        <rule name="All Other" player="DSPlayer"/>
    </rules>
</playercorefactory>

With these settings, DSPlayer will play in-progress recordings but the total time will remain constant - this will be fixed in the next release.

(2015-06-07, 23:01)nedge2k Wrote: [ -> ]...and as others have mentioned, switching times are slower but I suppose it's to be expected? (FWIW: UK, Blackgold DVB-T2 card.)

Aside from that... Smile Thanks for your work!
Switching time are slower compared to Kodi DVDPlayer.
Did you tested with EVR?
@*Roma*: Thanks for the work on LiveTV I had given up on that and just used standard for live TV.
I'm using DVBViewer Recording Service as backend. Will that work to? It should be supporting RTSP.

And question 2: Will it support Teletext which are used in some countries?
(2015-06-08, 12:01)*Roma* Wrote: [ -> ]
(2015-06-07, 23:01)nedge2k Wrote: [ -> ]Works well for me, with 2 small issues...

-Occasional crash during a long programme (i.e. F1)
The crash happens with MadVR or EVR ?
Is this happens only when you watch live tv? Did you tried to play media files?

Only tested with MadVR but i'm wondering if it was an issue with the programme as when I watched the recording back, it started stuttering really badly at around the same point. Will test further and update.

Will try EVR for TV, see what the switching times are like. By the way, how do you return to using DVDPlayer? I tried deleting the rstp and pvr rules but TV stopped working?

Will try the new rules tonight. Thanks Smile
@aracnoz

I'm creating an application to setup everything for the best home cinema experience with latest software.
Kodi DSPlayer plays an important role in it.

Unfortunately MediaFire is hard to scrape with its random captcha.

Could you provide friendly direct download?
Why not using github releases as Kodi installer hosting?

Thanks!
(2015-06-03, 22:13)aracnoz Wrote: [ -> ]
(2015-06-03, 17:21)ExplodingCore Wrote: [ -> ]Any update on that ftp file path issue..?

i just tried with graphstudio, lavfilters works with an http server but not with a ftp server like ioftpd so i think that will never work with dsplayer

So is the problem dsplayer itself or the LAV filters? I'm asking cause my FTP server setup works really well for me, way better than NFS or SMB, it's just that I can't play files from my synced library using DSPlayer :/
Would be a shame if I had to drop one or the other..
So, no workaround or anything for this besides using DVDPlayer or something else than FTP?
(2015-06-08, 12:24)Bjur Wrote: [ -> ]@*Roma*: Thanks for the work on LiveTV I had given up on that and just used standard for live TV.
I'm using DVBViewer Recording Service as backend. Will that work to? It should be supporting RTSP.
DVBViewer doesn't support timeshift with http/rtsp streaming.
Kodi PVR TV-backend plugin for DVBViewer implements its own timeshift mechanism, but we can't use it.

You can use LAV Filter source splitter,but i think it will not work with timeshift.


(2015-06-08, 12:24)Bjur Wrote: [ -> ]And question 2: Will it support Teletext which are used in some countries?
According to this page, MediaPortal tsreader supports teletext, but i haven't tested this.


(2015-06-08, 12:30)nedge2k Wrote: [ -> ]Only tested with MadVR but i'm wondering if it was an issue with the programme as when I watched the recording back, it started stuttering really badly at around the same point. Will test further and update.

Will try EVR for TV, see what the switching times are like. By the way, how do you return to using DVDPlayer? I tried deleting the rstp and pvr rules but TV stopped working?

Will try the new rules tonight. Thanks Smile
In order to use DVDPlayer for live tv you have to change playercorefactory.xml rules:
Code:
<playercorefactory>
    <rules action="prepend">
        <rule protocols="daap|rtv|rtmp|http|https|rtmpe|mms|rtp" player="DVDPlayer" />
        <rule name="PVR" filetypes="pvr" player="DVDPlayer"/>    
        <rule name="All Other" player="DSPlayer"/>
    </rules>
</playercorefactory>
roma, (one think that has nothing to with pvr): because of your playercorefactory all kinds of internet streams will play by kodis internal dvd player. is there a reason because rtsp, rtmp, mms, http, https play very well with lav source/splitter? (the only thing i miss in dsplayer version is the "cache size" info in osd (button "o"))
(2015-06-08, 21:15)Ed76 Wrote: [ -> ]roma, (one think that has nothing to with pvr): because of your playercorefactory all kinds of internet streams will play by kodis internal dvd player. is there a reason because rtsp, rtmp, mms, http, https play very well with lav source/splitter? (the only thing i miss in dsplayer version is the "cache size" info in osd (button "o"))

I don't tested all of protocols with DSPlayer Smile
If you tested all of them - you can post your playercorefactory.
(2015-06-07, 02:14)Warner306 Wrote: [ -> ]
(2015-06-07, 01:23)scott967 Wrote: [ -> ]Thought I would check this out (Isengard build) and you guys have done a great job here. I was wondering if there is any way in DSplayer to get accel playback with sound? In particular VLC player allows you to playback at 1.1x 1.2x 1.3x etc with sound and that's something I miss on dvdplayer. From what I've seen in the "feature request" forum there seems to be strong opposition to doing this in dvdplayer.

Wouldn't everything sound like the Chipmunks? That is not really consistent with the high-end experience DSPlayer is trying to offer.

Well, that's essentially what the Kodi devs say. I find watching tv shows in 1.3x speed works very well and in fact, after a while watching one at 1.0 seems excruciatingly slow. I guess I was hoping it was something simple that could be configured.

scott s.
.
How do I get BluRay BD50 rips (full bluray folder structures) and .iso files to play with DSPlayer?
Do I need to add some formats to filters, or something else?

When I select the BD50 to play, nothing happens. And when I select the .iso I get to choose between two suggested titles to play, neither start any playback.

Any help appreciated!
(2015-06-08, 23:21)scott967 Wrote: [ -> ]
(2015-06-07, 02:14)Warner306 Wrote: [ -> ]
(2015-06-07, 01:23)scott967 Wrote: [ -> ]Thought I would check this out (Isengard build) and you guys have done a great job here. I was wondering if there is any way in DSplayer to get accel playback with sound? In particular VLC player allows you to playback at 1.1x 1.2x 1.3x etc with sound and that's something I miss on dvdplayer. From what I've seen in the "feature request" forum there seems to be strong opposition to doing this in dvdplayer.

Wouldn't everything sound like the Chipmunks? That is not really consistent with the high-end experience DSPlayer is trying to offer.

Well, that's essentially what the Kodi devs say. I find watching tv shows in 1.3x speed works very well and in fact, after a while watching one at 1.0 seems excruciatingly slow. I guess I was hoping it was something simple that could be configured.

scott s.
.


not necessarily. many players (hardware and software) support playback speed control with adjusted pitch, so that the pitch remains the same but just faster. I would love to see either kodi or dsplayer be able to do the same. Especially because it integrates so nicely with the kodi interface. other players like mpv player can do it, but kodi has to open the program externally breaking the seamless integration one would like to see in a media center.

Mpv player is opensource, surely one wouldnt need to reivent the wheel to add a bit of code to be able to do this. Smile
Hi guys, I've a problem.
I just installed Kodi DSPlayer and I set it as the default video player, but when i try to reproduce a movie nothing happens.
If i disable DSPlayer as default video player, Kodi works again.

Why?

Thanks!
Attention to users of build10 or build from the main page (which is a bit later than build 10 but I don't know what is new in it) : do you reproduce the "GPU is getting very high causing fans to take off during pause"?
I can't be the only one?
Well, I can confirm that my GPU load doubles when paused and using NNEDI3 (128 Neurons)...
(2015-06-10, 20:06)EgYpT Wrote: [ -> ]Hi guys, I've a problem.
I just installed Kodi DSPlayer and I set it as the default video player, but when i try to reproduce a movie nothing happens.
If i disable DSPlayer as default video player, Kodi works again.

Why?

Thanks!

Did you install the Starter Kit from the set-up guide? Outside of that, you should provide a Kodi debug log for further assistance.
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 524