New Release - Streamed MP v0.4.298 (1 Viewer)

stevemuller

Portal Member
April 8, 2008
11
0
Home Country
Hi stevemuller, I think there is some mods available for this if you search through the forums which addresses this issue (atleast im pretty sure I came across them before).

I have looked but couldn't find any mods? Does someone know where to find it?

Thanks in advance.
 

infinite.loop

Retired Team Member
  • Premium Supporter
  • December 26, 2004
    16,163
    4,133
    127.0.0.1
    Home Country
    Austria Austria
    All testing has been done with latest svn of MediaPortal and StreamedMP. :)

    SkipStep definition in common.player.xml
    common.player.xml line 160
    Code:
    <control>
     <description>skip steps</description>
     <type>label</type>
     <id>15</id>
     <posX>0</posX>
     <posY>700</posY>
     <width>1280</width>
     <height>25</height>
     <label>-</label>
     <font>mediastream10tc</font>
     <visible>no</visible>
     <align>center</align>
    </control>
    I guess this should be used to control the appearance of the SkipStep texts. But it has no effect, because it uses the wrong ID (ID15 instead of ID10).

    Right now the appearance of the SkipSteps is controled in common.play.fullscreen.xml, line 27.
    Code:
    <control>
     <description>row 1 label</description>
     <type>label</type>
     <id>10</id>
     <posX>0</posX>
     <posY>700</posY>
     <width>1280</width>
     <height>25</height>
     <align>center</align>
     <visible>no</visible>
     <label>-</label>
     <font>mediastream10tc</font>
    </control>

    I think it would be better to have only one working definition in xml files.
    common.player.xml seems to be logical, if that does not cause known issues. :)

    Reason i noticed this was that i increased the Pause/SkipStep/Start/Endtime texts and tweaked the location for better readability in my usecase.
    mediaportal 2009-01-25 10-42-09-06.png

    xml's: View attachment SkipSteps-Timeline-changes.zip

    IMDB Import / Progressbar too long
    When importing IMDB Info, the progressbar is too long.
    SMP - progressbar too long.JPG

    "Recording started / ended" Notification
    If you watch LiveTV, and a recording starts or ends, MediaPortal displays a notification window (if the feature is enabled).
    In Blue3(w) this window is located in the lower right area of the screen.
    In StreamedMP it is right in the center, which means that it covers a quite "important" part of the current LiveTV.

    Would be nice if it could be moved to the lower right area, where you still see the info, but it does not disturb. :)
     

    disaster123

    MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    @infinityloop
    oh you're right - i meant 1.0.1. I didn't know that in the SVN already is a 1.0.1 compatible version. Sorry. Will your changed be merged to the SVN.

    Reason i noticed this was that i increased the Pause/SkipStep/Start/Endtime texts and tweaked the location for better readability in my usecase.
    Could youi please provide your XML's? Cause for me this is also too small. Perhaps you've some other interesting changes? :)
     

    infinite.loop

    Retired Team Member
  • Premium Supporter
  • December 26, 2004
    16,163
    4,133
    127.0.0.1
    Home Country
    Austria Austria
    Reason i noticed this was that i increased the Pause/SkipStep/Start/Endtime texts and tweaked the location for better readability in my usecase.
    Could youi please provide your XML's? Cause for me this is also too small. Perhaps you've some other interesting changes? :)
    Attached the changed xml's to previous post. :)
     

    disaster123

    MP Donator
  • Premium Supporter
  • May 14, 2008
    3,558
    434
    Home Country
    Germany Germany
    Thanks!

    In the SVN logs of streamedmp is also written that you need version 0.7 of moving pictures - is there a precompiled one or must i compile it myself from SVN?
     

    infinite.loop

    Retired Team Member
  • Premium Supporter
  • December 26, 2004
    16,163
    4,133
    127.0.0.1
    Home Country
    Austria Austria
    In the SVN logs of streamedmp is also written that you need version 0.7 of moving pictures - is there a precompiled one or must i compile it myself from SVN?
    I am not using movingpictures, but latest version of it is 0.6.6.
    So you might need to compile its current svn. or just not use the related skinfiles for movingpictures from StreamedMP svn, but the one from the last release instead. ;)
     

    losttown

    Community Skin Designer
    January 7, 2008
    167
    58
    @infinityloop
    Thank you for your opinion and suggestion!

    SkipStep definition in common.player.xml
    common.player.xml line 160
    Code:
    <control>
     <description>skip steps</description>
     <type>label</type>
     <id>15</id>
     <posX>0</posX>
     <posY>700</posY>
     <width>1280</width>
     <height>25</height>
     <label>-</label>
     <font>mediastream10tc</font>
     <visible>no</visible>
     <align>center</align>
    </control>
    I guess this description used to control the appearance of the SkipStep texts. But it has no effect, because it uses the wrong ID (ID15 instead of ID10).​



    1.That's ritght because the ID 15 is no longer exists in GUIVideoFullscreen.cs, TvFullScreen.cs but still exist in mytvFullScreen.xml (Blue3) and Blue3 and Skin Designers Guide that's all what we have.

    2 I thing the description for ID 10 "row 1 label" should also stay,
    GUIVideoFullscreen.cs, TvFullScreen.cs
    .
    .
    66 LABEL_ROW1 = 10,
    67 LABEL_ROW2 = 11, // never used, and should be used, because some skins won't support it
    68 LABEL_ROW3 = 12, // never used, and should be used, because some skins won't support it
    .
    .
    I think it would be better to have only one working definition in xml files.
    common.player.xml seems to be logical, if that does not cause known issues. :)

    common.player.xml is used in TVOSD.xml, videoOSD.xml, videoFullScreen.xml, mytvFullScreen.xml and
    common.play.fullscreen.xml only in videoFullScreen.xml, mytvFullScreen.xml, ID 10 is definied in full screens.


    Losttown
    .​
     

    infinite.loop

    Retired Team Member
  • Premium Supporter
  • December 26, 2004
    16,163
    4,133
    127.0.0.1
    Home Country
    Austria Austria
    1.That's ritght because the ID 15 is no longer exists in GUIVideoFullscreen.cs, TvFullScreen.cs but still exist in mytvFullScreen.xml (Blue3)

    take a close look at mytvFullScreen.xml in Blue3.
    The skipstep section is commented out, it is not used at all. :)
    I will have a word with our devs/designers. because this seems to be obsolete info.
     

    Users who are viewing this thread

    Top Bottom