1.31.0 MediaPortal 1.31 Pre-Release ready for testing! (1 Viewer)

TLD

Portal Pro
October 26, 2007
954
387
Rainy Washington
Home Country
United States of America United States of America
I'm either confused or I've lost the thread. What error are we talking about? We start MPEI, choose LAVFilters, choose to install 0.77.2, see how 0.77.2 is installed. And?
In the folder "C:\ProgramData\Team MediaPortal\MediaPortal\Installer\V2\b7738156-b6ec-4f0f-b1a8-b5010349d8b1\" we end up with 0.77.2.0.
In the file "C:\ProgramData\Team MediaPortal\MediaPortal\Installer\V2\InstalledExtensions.xml" we have:
XML:
        <Name>LAVFilters</Name>
        <Id>b7738156-b6ec-4f0f-b1a8-b5010349d8b1</Id>
        <Author>offbyone, nevcairiel, ajs</Author>
        <HomePage>http://1f0.de/</HomePage>
        <ForumPage>http://forum.doom9.org/showthread.php?t=156191</ForumPage>
        <UpdateUrl>http://www.team-mediaportal.com/index.php?option=com_mtree&amp;task=att_download&amp;link_id=162&amp;cf_id=52</UpdateUrl>
        <Version>
          <Major>0</Major>
          <Minor>77</Minor>
          <Build>2</Build>
          <Revision>0</Revision>
        </Version>
Or what?
Start MPEI, choose LAVFilters, choose to install 0.77.2 and i get this.
 

Attachments

  • Screenshot 2023-04-30 135959.png
    Screenshot 2023-04-30 135959.png
    140.8 KB

TLD

Portal Pro
October 26, 2007
954
387
Rainy Washington
Home Country
United States of America United States of America

Attachments

  • Screenshot 2023-05-01 014420.png
    Screenshot 2023-05-01 014420.png
    14.2 KB

ajs

Development Group
  • Team MediaPortal
  • February 29, 2008
    15,685
    10,647
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #65
    @high Maybe we have a problem on the server or in the repository? We get different files from the same link for LAVFilters, how can that be? Browser cache? Or?
     

    high

    Administrator
  • Team MediaPortal
  • August 31, 2004
    5,109
    5,503
    47
    Isselburg/NRW
    Home Country
    Germany Germany
    @high Maybe we have a problem on the server or in the repository? We get different files from the same link for LAVFilters, how can that be? Browser cache? Or?
    LAV? yes, thats a hardcoded link in NGINX to a static file.

    Code:
                        if ($args ~* 'option=com_mtree&task=att_download&link_id=162&cf_id=24') {
                            rewrite ^ http://install.team-mediaportal.com/MP1/LAVFilters0.76.1.0.mpe1? last;
                        }

    but it's http only. If you call the https link you may get a different version, depending what version is stored in the repository (0.77.2 I guess).
    https-links didn't work in the MP1-installer or somewhere related, can't remember.

    changed the link to
    Code:
                    location = /index.php {
                        if ($args ~* 'option=com_mtree&task=att_download&link_id=162&cf_id=24') {
                            rewrite ^ http://install.team-mediaportal.com/MP1/LAVFilters0.77.2.0.mpe1? last;
                        }
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,685
    10,647
    Kyiv
    Home Country
    Ukraine Ukraine
    • Thread starter
    • Moderator
    • #68
    https-links didn't work in the MP1-installer or somewhere related, can't remember.
    I think we already fixed that ... I'll have to look again...
    I did, it's working. :)

    I checked with myself, my http and https returns the same file 0.77.2.
    Updated LAV Filters MPE to https, let's check ...
     

    TLD

    Portal Pro
    October 26, 2007
    954
    387
    Rainy Washington
    Home Country
    United States of America United States of America
    I think we already fixed that ... I'll have to look again...
    I did, it's working. :)

    I checked with myself, my http and https returns the same file 0.77.2.
    Updated LAV Filters MPE to https, let's check ...
    Great work, MPEI is working as expected now.
     

    Users who are viewing this thread

    Top Bottom