Seitenhierarchie

  Wiki Navigation

    Loading...


 Recently Updated


 Latest Releases

 MediaPortal 1.32
            Releasenews | Download
 MediaPortal 2.5
            Releasenews | Download


Purpose

  • Required:  Yes
  • Type of Change: Bug Fix

Adding a GuiProperty, "AudioVideoDelayPossible", which is set to true when ffdshow is in graph otherwise to false. This way the skinner can enable/disable the control and even display a message that it needs ffdshow for this. 

In the example below, a "Delay Not Possible/need FFDShow" is displayed when FFDShow is not present in graph.

Description of Change

AudioVideoDelayPossible with a property to set to true or false

Additional Information and References.

Mantis Issue:

3603

Related xml(s):

videoOSD.AudioMenu.xml (StreamedMP)

Windows IDs:

 

Related GUI control:

<visible>string.equals(#VideoOSD.AudioVideoDelayPossible, false)</visible>

Author:

Sebastiii

Date added:

Sat, 06 Aug 2011

XML/Code Samples

This example xml can be used in a skin to show a label only when AudioVideo delay is available (Based on StreamedMP Skin):

<control>
      <description>your label</description>
      <type>label</type>
      <id>1</id>
      <posX>908</posX>
      <posY>65</posY>
      <label>Delay Not Possible/need FFDShow</label>
      <font>mediastream10c</font>
      <visible>string.equals(#VideoOSD.AudioVideoDelayPossible, false)</visible>
      <animation effect="slide" start="1300,0" end="0,0" tween="quadratic" time="300" delay="0">visible</animation>
    </control>

Screenshots

   

 

This page has no comments.