Kodi Community Forum
DSPlayer (DirectShow Player for XBMC) Eden build available - 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: DSPlayer (DirectShow Player for XBMC) Eden build available (/showthread.php?tid=106629)



RE: DSPlayer (DirectShow Player for XBMC) Eden build available - aracnoz - 2012-12-13

i have fixed the issue with volume slider in dsplayer, now the volume can change with + and - during playback

the problem was that with frodo there is the "AudioEngine"
e some variable is changed


so these are the changes that i have made

xbmc\xbmc\cores\DSPlayer\DSGraph.cpp
Code:
- line 513:

from
void CDSGraph::SetVolume(long nVolume)

to
void CDSGraph::SetVolume(float nVolume)

- line 519:

from
    m_pBasicAudio->put_Volume((nVolume == VOLUME_MINIMUM) ? -10000 : nVolume);

to
    m_pBasicAudio->put_Volume((nVolume == VOLUME_MINIMUM) ? -10000 : (((nVolume - 1)*60.0f)*100));


xbmc\xbmc\cores\DSPlayer\DSGraph.h
Code:
- line 172:

from
  void SetVolume(long nVolume);

to
  void SetVolume(float nVolume);

- line 199;

from
  long m_currentVolume;

to
  float m_currentVolume;

xbmc\xbmc\cores\DSPlayer\DSPlayer.h
Code:
- line 103:

from
  virtual void SetVolume(long nVolume)                          { g_dsGraph->SetVolume(nVolume); }

to
  virtual void SetVolume(float nVolume)                          { g_dsGraph->SetVolume(nVolume); }


this is frodo beta3 + dsplayer + these fix

http://www2.zshare.ma/jl7brhnx558e


@Roman_V_M

can you segnalate to Eduard_K these changes

ps
to semplificate and to join in all in one Smile i repost the old fix to xml configuration.

xbmc\xbmc\cores\DSPlayer\GraphFilters.h
Code:
delete line 44 and 45

      if(!isinternal)
          pBF.FullRelease();



RE: DSPlayer (DirectShow Player for XBMC) Eden build available - oldpainless - 2012-12-13

(2012-12-13, 04:55)aracnoz Wrote: i have fixed the issue with volume slider in dsplayer, now the volume can change with + and - during playback

the problem was that with frodo there is the "AudioEngine"
e some variable is changed


so these are the changes that i have made

xbmc\xbmc\cores\DSPlayer\DSGraph.cpp
Code:
- line 513:

from
void CDSGraph::SetVolume(long nVolume)

to
void CDSGraph::SetVolume(float nVolume)

- line 519:

from
    m_pBasicAudio->put_Volume((nVolume == VOLUME_MINIMUM) ? -10000 : nVolume);

to
    m_pBasicAudio->put_Volume((nVolume == VOLUME_MINIMUM) ? -10000 : (((nVolume - 1)*60.0f)*100));


xbmc\xbmc\cores\DSPlayer\DSGraph.h
Code:
- line 172:

from
  void SetVolume(long nVolume);

to
  void SetVolume(float nVolume);

- line 199;

from
  long m_currentVolume;

to
  float m_currentVolume;

xbmc\xbmc\cores\DSPlayer\DSPlayer.h
Code:
- line 103:

from
  virtual void SetVolume(long nVolume)                          { g_dsGraph->SetVolume(nVolume); }

to
  virtual void SetVolume(float nVolume)                          { g_dsGraph->SetVolume(nVolume); }


this is frodo beta3 + dsplayer + these fix

http://www2.zshare.ma/jl7brhnx558e


@Roman_V_M

can you segnalate to Eduard_K these changes

ps
to semplificate and to join in all in one Smile i repost the old fix to xml configuration.

xbmc\xbmc\cores\DSPlayer\GraphFilters.h
Code:
delete line 44 and 45

      if(!isinternal)
          pBF.FullRelease();

Hi,

Thanks for your coding work on this project.

K


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Roman_V_M - 2012-12-13

Eduard_K said that the quick fix for xml configs not working may cause issues with filter graphs not being cleaned correctly after playback, but he promised to fix this issue.
I've passed the info about the volume control.


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Kolmain - 2012-12-13

Reinstalling SVP worked for me- Also, I know we just got beta 3 but when do you think we'll have that RC1? Smile


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - devilshura - 2012-12-13

I have try to remove and reinstall SVP. It seem to work in time.But when i restart windows.SVP not active by DSplayer anymore.Even if i install last 3 build of XBMC-DSPlayer above.I also try to remove/install in many times.Even to remove/install K-lite megacodec.But I have no luck.It can work only when i reinstall SVP until to restart the system(win8 64bit).I have potplayer in this system too but it alway work with SVP.
The other problem.I found eror in skin widget and music-video library.
I wish this will better in the future.


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - aracnoz - 2012-12-13

i made a build of frodo rc1 + DSPlayer + the fix in volume control
http://www2.zshare.ma/rhbawow3awcj

this is the source
https://github.com/aracnoz/xbmc/tree/dsplayer

of course it was possible only thanks to the great work of Eduard_K the only one developer

i'm just playing a little bit like everyone here Smile


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - panni - 2012-12-14

Based on http://git.avmedia.su/git/?p=xbmc.git;a=commit;h=5a8d40dc71cd7adee4c55046903344e7cab59d58: https://fragstore.net/panniweb/XBMCSetup-20121213-5a8d40d-dx.exe
Working fine here.


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Roman_V_M - 2012-12-14

Eduard_K's bug tracker for both XBMC-dsplayer and AVsplitter: http://mantis.avmedia.su/


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - oldpainless - 2012-12-14

(2012-12-14, 07:30)panni Wrote: Based on http://git.avmedia.su/git/?p=xbmc.git;a=commit;h=5a8d40dc71cd7adee4c55046903344e7cab59d58: https://fragstore.net/panniweb/XBMCSetup-20121213-5a8d40d-dx.exe
Working fine here.

Works great here too - chapter/forward freezing fixed.

Cheers all.

K


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - alexrose1uk - 2012-12-15

I'm still using an older, stable, Eden build, with LAV filters. Is it worth upgrading to this last build or does it have any obvious issues with subs, xml configs, or the things Aracnoz seems to have been fixing?

Good to see Development still continuing Big Grin


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - oldpainless - 2012-12-17

(2012-12-15, 22:14)alexrose1uk Wrote: I'm still using an older, stable, Eden build, with LAV filters. Is it worth upgrading to this last build or does it have any obvious issues with subs, xml configs, or the things Aracnoz seems to have been fixing?

Good to see Development still continuing Big Grin

Hi,

I guess thats the thing with support forums - most people only come here when there is problem or want info...and I guess judging by the number of non-posts, everyone is happy with the latest build......from my perspective, the latest build just seems to work - hope that helps.

K


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - purpleman - 2012-12-18

(2012-05-11, 21:40)sergiocos Wrote: As i remember, 0wing promised to keep DSplayer updated, but for now I'm pretty satisfied with my dsplayer Eden, and I see no major improvements on nightlies... so, I just say let's wait a while.

Is there any way to work with DSPlayer and get PVR functionality?

Currently, if I set DSPlayer as my default player, Live TV doesn't work (in the log it says it doesn't know how to open a pvr:// url which apparently is being sent by XBMC when trying to watch a channel).

Thanks.



RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Roman_V_M - 2012-12-18

(2012-12-18, 13:35)purpleman Wrote:
(2012-05-11, 21:40)sergiocos Wrote: As i remember, 0wing promised to keep DSplayer updated, but for now I'm pretty satisfied with my dsplayer Eden, and I see no major improvements on nightlies... so, I just say let's wait a while.

Is there any way to work with DSPlayer and get PVR functionality?

No, currently DSplayer does not support network streams. The workaround is to use XBMC's own dvdplayer to handle such streams by setting the following rule in your playercorefactory.xml:
Code:
<rule protocols="pvr|http"  player="dvdplayer" />
You can change the protocol list according to your needs.




RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Bjur - 2012-12-18

These new builds should we still first install avsplitter to get bluray playback.


RE: DSPlayer (DirectShow Player for XBMC) Eden build available - Ed76 - 2012-12-18

@Roman_V_M:
are there any news concerning dsplayer + pvr/live tv? you wrote some time ago the developer is working on this.