OnlineVideos 2.5.0.0 [2024/11/11] (6 Viewers)

bta489

Portal Pro
March 17, 2013
176
99
Home Country
Germany Germany
...
It shows the selection of 1080p, 720p, 360p and 144p resolutions in YouTube in the web browser.
But in MediaPortal Online Videos it immediately plays in 360p without asking for a different resolution.
...
Not an expert of the inner workings of the plugin, but the problem is not that other resolutions are not existing, but in what format. In the Browser you obviously see any available resolution, as the YouTube-player supports any format YouTube serves videos in. The plugin however apparently can so far only handle a format that YouTube has been using for quite some time but seemingly is now in the process of phasing out. The higher resolutions you see in the browser are only available in that 'new' format, that the OnlineVideos-Plugin right now is just not able to process (If I understand it correctly, there are now separate streams for audio and video instead of one stream containing both).
 

joecrow

Test Group
  • Team MediaPortal
  • August 9, 2012
    2,646
    1,993
    Home Country
    Germany Germany
    There seems to be programs missing from the ARD Mediatek catchup section (Was Lief-Das Erste) for example, yesterday the Charlot Link detective program starting at 20.15 is not listed although it was viewable Live and is shown in the A-Z section. Unfortunately some other programs cannot be found at all for example the Tatort detective series which seems never to be displayed in "Was Lief" and its section in the A-Z always gives an error (Error Loading category videos). I am currently experiencing very poor quality OTA TV reception so using OV catchup as an alternative to recording live TV would be very usefull.
     

    greybox

    MP Donator
  • Premium Supporter
  • January 23, 2009
    630
    142
    Home Country
    Canada Canada
    Youtube doesn't work for me. The error is:

    Error starting playback. Connection lost, cannot reopen.

    Anybody else?
     

    doskabouter

    Development Group
  • Team MediaPortal
  • September 27, 2009
    4,643
    3,080
    Nuenen
    Home Country
    Netherlands Netherlands
    New release done today!

    Changes/improvements:
    • Added support for separate audio and video streams (very big thanks to @Pablik !, now higher resolutions are also available on youtube)
    • Added support for multiple subtitles
    • Fixed bug in favorites: if folder and single videos were present, fetching subcategories silently crashed
     

    Pablik

    Development Group
  • Team MediaPortal
  • August 19, 2010
    706
    1,141
    Home Country
    Czech Republic Czech Republic
    Just a little note for skinners: the new version has a few new skin tags related to LAV buffering (if LAV Source Splitter is used).
    If the buffer gets below certain level the playback is paused/unpaused based on current level.
    Example for myonlinevideosFullScreen.xml - implements waiting indicator(shows up during buffering):
    Code:
             <control>
                <description>Working Animation</description>
                <type>animation</type>
                <id>0</id>
                <posX>900</posX>
                <posY>480</posY>
                <width>120</width>
                <height>120</height>
                <textures>common.waiting.1.png;common.waiting.2.png;common.waiting.3.png;common.waiting.4.png;common.waiting.5.png;common.waiting.6.png;common.waiting.7.png;common.waiting.8.png</textures>
                <Duration>0:0:01.0</Duration>
                <keepaspectratio>yes</keepaspectratio>
                <visible>string.equals(#OnlineVideos.Buffering)</visible>
            </control>
            <control>
                <description>LAV buffer</description>
                <type>label</type>
                <id>1</id>
                <posX>960</posX>
                <posY>620</posY>
                <label>Buffering: #OnlineVideos.BufferLevel%</label>
                <align>center</align>
                <font>font10</font>
                <textcolor>ffffffff</textcolor>
                <shadowAngle>45</shadowAngle>
                <shadowDistance>3</shadowDistance>
                <shadowColor>ff000000</shadowColor>
                <visible>string.equals(#OnlineVideos.Buffering)</visible>
            </control>

    Example of additional buffer level description for myonlinevideosOSD.xml file:
    Code:
     <control>
          <description>Buffer</description>
          <type>label</type>
          <id>1</id>
          <posX>1500</posX>
          <posY>5</posY>
          <label>Buffer: #OnlineVideos.BufferLevel% / #OnlineVideos.BufferTimes / #OnlineVideos.BufferSize</label>
          <align>left</align>
          <font>font10</font>
          <textcolor>ffffffff</textcolor>
          <shadowAngle>45</shadowAngle>
          <shadowDistance>3</shadowDistance>
          <shadowColor>ff000000</shadowColor>
          <visible>!control.hasfocus(1237)+!Control.HasFocus(2999)</visible>
        </control>
     

    Users who are viewing this thread

    Top Bottom