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
I had this great idea to install Kodi 18 as a regular application in Program Files, and then run DSplayer Krypton in portable mode.. When you drag a file onto the -p shortcut it will quick play the file in Kodi DSplayer.. GREAT FIX! Then I'd figure out how to actually get the file info back into 18 afterwards.. But.. You know.. Ofc. I can't run 2 Kodi.exe instances at the same time, so my quest died early. :|

Now that I'm analyzing this, it's clearly a sign of desperation on my own side. I'm just trying to get DSplayer to play the movies externally, while maintaining the OSD and all the Kodi features I'm used to. But nooo.. Only one Kodi.exe instance at a time. Dang nabbit!
Even if you rename the dsplayer to say kodidsplayer.exe  ?
I've tried what curael posted and it still doesn't work if you change the .exe name. I also tried running Kodi with Sandboxie and then you get multiple exe's but it crashes or doesnt play anything. It might work in some other way maybe, nice idea tho.
(2019-05-19, 16:24)curael Wrote: [ -> ]I can't run 2 Kodi.exe instances at the same time, so my quest died early. :|

Interesting... So I tried to open the dsplayer kodi.exe on an hexeditor, searched for "Kodi" (case sensitive) and found a result at hex-offset BD3544.

So I simply replaced the "Kodi" string to "XBMC" (have to keep the same number of chars to not break anything when hexediting) and now Windows recognizes the dsplayer application as "XBMC" and then is possible to also run Kodi18 at the same time. [Edit4]Probably should have renamed as "KDSP", standing for Kodi DSPlayer...[/Edit4]

Image Image
Image

Edit:
If there's some kind of cli switch or something that would close the dsplayer right after the video stops, it could be used as a almost transparent external player for Kodi18...

Edit2:
Installing the addon "Kodi Callbacks", setting to listen to the event "onPlayBackEnded" and set it to run the build-in task "Quit", will make it close itself when the playback is finished or stopped.

Edit3:
Screenshots
Image

Image

In my case, the next step would be create new remote control rules to redirect all the key presses to the dsplayer when it's window is found. And see how the "watched" status would perform (I used very little the external player function).
(2019-05-25, 04:21)le__ Wrote: [ -> ]
(2019-05-19, 16:24)curael Wrote: [ -> ]I can't run 2 Kodi.exe instances at the same time, so my quest died early. :|

Interesting... So I tried to open the dsplayer kodi.exe on an hexeditor, searched for "Kodi" (case sensitive) and found a result at hex-offset BD3544.

So I simply replaced the "Kodi" string to "XBMC" (have to keep the same number of chars to not break anything when hexediting) and now Windows recognizes the dsplayer application as "XBMC" and then is possible to also run Kodi18 at the same time. [Edit4]Probably should have renamed as "KDSP", standing for Kodi DSPlayer...[/Edit4]

Image Image
Image

Edit:
If there's some kind of cli switch or something that would close the dsplayer right after the video stops, it could be used as a almost transparent external player for Kodi18...

Edit2:
Installing the addon "Kodi Callbacks", setting to listen to the event "onPlayBackEnded" and set it to run the build-in task "Quit", will make it close itself when the playback is finished or stopped.

Edit3:
Screenshots
Image

Image

In my case, the next step would be create new remote control rules to redirect all the key presses to the dsplayer when it's window is found. And see how the "watched" status would perform (I used very little the external player function).

Great progress! I'm glad I shared this. I will definitely have a go at this later tonight. Also, in my case, about redirecting the remote control, a simple Autohotkey script would be sufficient to activate what you call the XBMC window. So basically a simple if Kodi exist, do. And if Kodi and XBMC exist, then activate XBMC. Oh man. This is gonna be a janky work around, but if it ends up working, I'm a happy camper.

But there's also the whole play state thing and the fact that DSplayer needs to scrape shows too. Perhaps making a shortcut that calls both applications on startup with Kodi activated and DSplayer scraping in the background. And then just have DSplayer take over on playback. Damn this is exciting!
Hi, what are the advantages of running a hacked version of KODI DS as portable external player in stock KODI over just using any other player like MPC-HC / BE?


edit: just occurred to me you'd be able to more easily access the MADVR features and menus, anything else?
(2019-05-25, 13:23)mclingo Wrote: [ -> ]Hi, what are the advantages of running a hacked version of KODI DS as portable external player in stock KODI over just using any other player like MPC-HC / BE?


edit: just occurred to me you'd be able to more easily access the MADVR features and menus, anything else?

You got it. Smile Streamlined for media center where MPC is made for a mouse and the UI looks jank, has no scraper info or any nice way of displaying any options from a couch. It's good for mouse use on a screen close by, but I, personally, don't wanna use it in a media center setup.

It's a good player though, of course.

If the DSplayer thing ends up working it'll be great. Otherwise I'll stick to Krypton DS. The Kodi integration in DSplayer is too good to give up. Personally, again, of course. ^^
Am I the only one to whom, on video playback stop, Kodi goes back to the home screen, instead of the library view where the selected video had been chosen?
I'm using DSPlayer x64 build.
That was happening to me when ReloadSkin() was in my keyboard.xml. Try again without your keyboard.xml.

https://forum.kodi.tv/showthread.php?tid...pid1966593
(2019-05-28, 13:49)Warner306 Wrote: [ -> ]That was happening to me when ReloadSkin() was in my keyboard.xml. Try again without your keyboard.xml.

https://forum.kodi.tv/showthread.php?tid...pid1966593
Thanks for your suggestion. Unfortunately I don't have ReloadSkin() anywhere in my keyboard.xml

It appears to happen only when using madVR Exclusive fullscreen mode (not clear what I lose nowadays from using Windowed). Tried activating debug log but nothing came out of it. No error, nothing.
I'm having crashes everytime I start a video file with either several videotracks or audiotracks.

For example: Avatar.2009.Extended.Collectors.Edition.3in1.Hybrid.1080p.BluRay.x264-VietHD (Which has 3 video tracks)
And: 3.Idiots.2009.BluRay.1080p.DTS.x264-DON (Which has a commentary track)

The files play in mpc-be and madvr. They also play in Kodi's own VideoPlayer.

The logs aren't telling me much except:
Quote:19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Audio stream found : Hindi [hin] (dts, 48000 Hz, 5.1, 1536 kb/s) - index: 1
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Audio stream found : Director's Commentary [eng] (aac he-aac, 48000 Hz, stereo) - index: 2
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Subtitle stream found : English [eng] (subrip) - index: 3
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Subtitle stream found : No subtitles - index: 4
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Editions stream found : E: Edition 1 [02:51:07] - index : 5
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Editions stream found : E: Edition 2 [02:51:07] - index : 6

Any help would be appreciated Smile
(2019-05-28, 16:22)ashlar Wrote: [ -> ]
(2019-05-28, 13:49)Warner306 Wrote: [ -> ]That was happening to me when ReloadSkin() was in my keyboard.xml. Try again without your keyboard.xml.

https://forum.kodi.tv/showthread.php?tid...pid1966593
Thanks for your suggestion. Unfortunately I don't have ReloadSkin() anywhere in my keyboard.xml

It appears to happen only when using madVR Exclusive fullscreen mode (not clear what I lose nowadays from using Windowed). Tried activating debug log but nothing came out of it. No error, nothing. 

Do you use a keyboard.xml? Try removing it.
(2019-05-28, 19:29)valfy Wrote: [ -> ]I'm having crashes everytime I start a video file with either several videotracks or audiotracks.

For example: Avatar.2009.Extended.Collectors.Edition.3in1.Hybrid.1080p.BluRay.x264-VietHD (Which has 3 video tracks)
And: 3.Idiots.2009.BluRay.1080p.DTS.x264-DON (Which has a commentary track)

The files play in mpc-be and madvr. They also play in Kodi's own VideoPlayer.

The logs aren't telling me much except:
Quote:19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Audio stream found : Hindi [hin] (dts, 48000 Hz, 5.1, 1536 kb/s) - index: 1
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Audio stream found : Director's Commentary [eng] (aac he-aac, 48000 Hz, stereo) - index: 2
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Subtitle stream found : English [eng] (subrip) - index: 3
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Subtitle stream found : No subtitles - index: 4
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Editions stream found : E: Edition 1 [02:51:07] - index : 5
19:19:36.615 T:6472  NOTICE: CStreamsManager::LoadIAMStreamSelectStreamsInternal Editions stream found : E: Edition 2 [02:51:07] - index : 6

Any help would be appreciated Smile   
Could be a setting in LAV Splitter. Do those settings match MPC-HC?

Also look at the audio or subtitle options for DSPlayer and try toggling them.
(2019-05-28, 23:55)Warner306 Wrote: [ -> ]
(2019-05-28, 16:22)ashlar Wrote: [ -> ]
(2019-05-28, 13:49)Warner306 Wrote: [ -> ]That was happening to me when ReloadSkin() was in my keyboard.xml. Try again without your keyboard.xml.

https://forum.kodi.tv/showthread.php?tid...pid1966593
Thanks for your suggestion. Unfortunately I don't have ReloadSkin() anywhere in my keyboard.xml

It appears to happen only when using madVR Exclusive fullscreen mode (not clear what I lose nowadays from using Windowed). Tried activating debug log but nothing came out of it. No error, nothing. 

Do you use a keyboard.xml? Try removing it.
I did that, nothing changed. On stop it goes back to home screen, if I use Exclusive full screen.
That's strange. No need to use fullscreen exclusive mode.
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