[solved] MP2 Switch off visualisation when listening to audio....PLEASE!!! (1 Viewer)

HTPCSourcer

Retired Team Member
  • Premium Supporter
  • May 16, 2008
    11,418
    2,335
    Home Country
    Germany Germany
    Locate the respective skin folder, open FullScreenContentAudio.xaml and delete the complete highlighted audio_viz block MediaPortal/MediaPortal-2 (text between the brackets < >)
    @ge2301, can you help out here please. It appears that my interpretation of the xaml and advice is not correct.
     

    HTPCSourcer

    Retired Team Member
  • Premium Supporter
  • May 16, 2008
    11,418
    2,335
    Home Country
    Germany Germany
    .the Wiki entry looks to be incorrect
    It's not.

    Do what is described there and you get the same result. The "<!--" and "-->" are comment delimiters. Anything included between these strings is ignored by the parsing software. This is in case that one decides to restore the spectrum analyzer...
     

    tonewheelkev

    Portal Pro
    February 10, 2012
    402
    41
    Leeds
    Home Country
    United Kingdom United Kingdom
    It's not.

    Do what is described there and you get the same result. The "<!--" and "-->" are comment delimiters. Anything included between these strings is ignored by the parsing software. This is in case that one decides to restore the spectrum analyzer...
    Aaaaghh...thanks for making that clear!
    As the saying goes...."you learn something new every day".....and I certainly need to do just that!! ;)
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,492
    10,371
    Kyiv
    Home Country
    Ukraine Ukraine
    the Wiki entry looks to be incorrect
    Yes, not correct with Before block:
    Code:
    HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,-260,0,0"
    x:Name="SpectrumAnalyzer" Style="{ThemeResource SpectrumAnalyzerStyle}"/>
    It should be:
    XML:
    <mp_audio_viz:AudioSpectrumAnalyzer Grid.Row="2" Grid.ColumnSpan="3" Width="1900" Height="280"
      HorizontalAlignment="Center" VerticalAlignment="Top" Margin="0,-260,0,0"
      x:Name="SpectrumAnalyzer" Style="{ThemeResource SpectrumAnalyzerStyle}"/>
     

    Users who are viewing this thread

    Top Bottom