Dutch Parliament live streams error

  • In the Netherlands, when you like to view the Dutch Parliament live streams ("Tweede Kamer"), you get an error in the log file
    saying that it can not open the stream, trying to detect it as a HLS/AppleHTTP and after that as a MpegTS, in that order and trying several probe sizes.

    Example (put in a STRM file): index.m3u8 (is HLS stream).

    Cause:

    File: ffmpeg-2.8.6/avformat/format.c, in routine AVInputFormat.

    There is a loop to score the potential stream formats (in this case HLS and MPegTS) and both give a 100 score, so in the end
    the decision is that no format wins (score == score_max) and the routine returns (fmt=) NULL.

    Possible solution: When the score of a potential/probed format is 100 (=AVPROBE_SCORE_MAX), then you can return that format
    immediately, because that one has the maximum score. It prevents the routine from returning NULL. I have tried it and it works.

    And: keep up the good work, it is really a good distribution and easy to compile/build!

  • The Dutch politics broadcast is usually no problem when viewed via the Nederland24 addon. The bigger problem at the moment is that all politicians are on holiday until September 4th, so testing that is a bit more difficult. :cry:


  • The Dutch politics broadcast is usually no problem when viewed via the Nederland24 addon. The bigger problem at the moment is that all politicians are on holiday until September 4th, so testing that is a bit more difficult.

    I have a beta version of a so called "Tweede Kamer" addon, based on the Nederland24 addon. It incorporates the other "Tweede Kamer" channels,
    like "Troelstrazaal" and "Thorbeckezaal".

    During holidays they are broadcasting dummy streams, so testing is not a problem.