• 1
  • 122
  • 123
  • 124(current)
  • 125
  • 126
  • 495
v18 LibreELEC Testbuilds for RaspberryPi (Kodi 18.0)
"The dependency in kodi.game version 1.0.29 could not be satisfied"

I had a moment and thought I'll give this build a try. After the konami code and game menu enabled I was met by this error trying to install an emulator.
I've looked into repositories and such, but it doesn't make to much sense to me (not extremely experienced on this system is my excuse).
So, to the point. Is this an easy fix?

RPi3 coming from the latest official version of Libreelec,
Upgraded through dropping #0525, 25-May-2017 into the ./update folder and rebooted.

Brgs,
@iorx: http://forum.kodi.tv/showthread.php?tid=...pid2589482
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
New LibreELEC.tv Leia build #0525: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.11.2 #1 Thu May 25 21:06:11 BST 2017 armv6l GNU/Linux

# vcgencmd version
May 15 2017 17:01:07
Copyright (c) 2012 Broadcom
version 9469ea3706e34c4de62f38a5008f69a429b4b43e (clean) (release)

# lsb_release
LibreELEC (Milhouse) - Version: devel-20170525210503-#0525-g856d624 [Build #0525]

# Kodi version
(18.0-ALPHA1 Git:61e98fd). Platform: Linux ARM 32-bit

Based on tip of LibreELEC.tv master (856d6246, changelog) and tip of XBMC master (feb2cda8, changelog) with the following modifications: Build Highlights:
  1. [addons] Bring in new binary style (First part)
Build Details:
  1. XBMC:
    • Few fixes for dependencies (PR:12157, 3 commits, 3 files changed)
    • [cmake] fix FindRapidJSON after 3d8742f818c20b8302464f34fbf248ed5aac2e0b (PR:12159, 1 commit, 1 file changed)
    • Fix win64 DLL wrapping and Debug build (PR:12160, 2 commits, 4 files changed)
    • [addons] Bring in new binary style (First part) (PR:12148, 3 commits, 12 files changed)
  2. kernel 4.11.y:
    • New commits in this build:
      • dwc_otg: make periodic scheduling behave properly for FS buses (a4727d42)
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
(2017-05-24, 23:34)Milhouse Wrote: Please report it to @opdenkamp on the Pulse-Eight github in either of those existing bug reports. It really needs fixing upstream, as reverting those commits doesn't really fix the issue.

I had a similar issue, which seems to be fixed with https://github.com/Pulse-Eight/libcec/pull/352
In my eyes just a simple typo which causes random cec behavior. Is @opdenkamp available to confirm and merge this PR?
(2017-05-26, 10:07)flubshi Wrote:
(2017-05-24, 23:34)Milhouse Wrote: Please report it to @opdenkamp on the Pulse-Eight github in either of those existing bug reports. It really needs fixing upstream, as reverting those commits doesn't really fix the issue.

I had a similar issue, which seems to be fixed with https://github.com/Pulse-Eight/libcec/pull/352
In my eyes just a simple typo which causes random cec behavior. Is @opdenkamp available to confirm and merge this PR?


That could indeed offer a solution...?

opdenkamp doesn't seem to have been active for a while though..?
(2017-05-26, 10:32)Vimes Wrote: That could indeed offer a solution...?
I think so. E.g. when TV is turned off, this wrong variable is set to false. Therfore, when TV is turned on again, this value blocks reconnecting cec. I compared an old and a new log. I guess 'm_bActiveSource' should indicate that a cec source is active/connected, while new introduced 'm_bActiveSourceSent' should indicate that an 'active message' was sent. Due to using m_bActiveSource instead of m_bActiveSourceSent, this causes strange behavior.

You can also compare setters and getters:
SetActiveSourceSent => m_bActiveSource = setto;
ActiveSourceSent => return m_bActiveSourceSent;
This confirms that accidentally a wrong/similar named variable was used.

(2017-05-26, 10:32)Vimes Wrote: opdenkamp doesn't seem to have been active for a while though..?
It seems that he is inactive since Apr 7. But maybe one of the kodi devs has contact...
(2017-05-26, 12:37)flubshi Wrote:
(2017-05-26, 10:32)Vimes Wrote: That could indeed offer a solution...?
I think so. E.g. when TV is turned off, this wrong variable is set to false. Therfore, when TV is turned on again, this value blocks reconnecting cec. I compared an old and a new log. I guess 'm_bActiveSource' should indicate that a cec source is active/connected, while new introduced 'm_bActiveSourceSent' should indicate that an 'active message' was sent. Due to using m_bActiveSource instead of m_bActiveSourceSent, this causes strange behavior.

You can also compare setters and getters:
SetActiveSourceSent => m_bActiveSource = setto;
ActiveSourceSent => return m_bActiveSourceSent;
This confirms that accidentally a wrong/similar named variable was used.

(2017-05-26, 10:32)Vimes Wrote: opdenkamp doesn't seem to have been active for a while though..?
It seems that he is inactive since Apr 7. But maybe one of the kodi devs has contact...

I do not like to ask but if anyone here has the ability to push this in the appropriate direction it would be most appreciated Smile

I had confirmed the issue for me at build #315 and then noted those findings on the git, after help was provided by Milhouse who made a special test build to confirm that by reverting those commits it would resolve the issue.
(2017-05-26, 10:07)flubshi Wrote: I had a similar issue, which seems to be fixed with https://github.com/Pulse-Eight/libcec/pull/352
In my eyes just a simple typo which causes random cec behavior. Is @opdenkamp available to confirm and merge this PR?

@Milhouse are you able to pick this (without the previous revert).
It looks correct to me.
Yes I've added it for tonight.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
(2017-05-26, 15:34)Milhouse Wrote: Yes I've added it for tonight.

Look forward to testing that out Smile

Many thanks
(2017-05-26, 15:49)Vimes Wrote:
(2017-05-26, 15:34)Milhouse Wrote: Yes I've added it for tonight.

Look forward to testing that out Smile

Many thanks
Me to. Thanks everyone

Sent from my Nexus 6
Is there a Plan for implement easy Setup an Adafruit OLED ,96" Display through i2c?
There is no option for setup LCDd and LCDd.conf or LCD.xml
i2cdetect dosen´t find it. No Library.
It would be so nice if there was an easy way to configure this OLED.
Maybe even in LibreELEC 8?

Thank you for your great Work.
@tjost maybe post on the LibreELEC forum as it sounds like an issue you have with LibreELEC rather than anything specific to these test builds.
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
New LibreELEC.tv Leia build #0526: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.11.3 #1 Fri May 26 22:08:50 BST 2017 armv6l GNU/Linux

# vcgencmd version
May 15 2017 17:01:07
Copyright (c) 2012 Broadcom
version 9469ea3706e34c4de62f38a5008f69a429b4b43e (clean) (release)

# lsb_release
LibreELEC (Milhouse) - Version: devel-20170526215938-#0526-g856d624 [Build #0526]

# Kodi version
(18.0-ALPHA1 Git:61e98fd). Platform: Linux ARM 32-bit

Based on tip of LibreELEC.tv master (856d6246, changelog) and tip of XBMC master (965ce4e0, changelog) with the following modifications: Build Highlights:
  1. New 4.11.3 kernel
  2. PR:352: Fix: set wrong variable (libcec)
Build Details:
  1. XBMC:
    • [cleanup] Fix headers included twice (PR:12161, 1 commit, 33 files changed)
    • [screensaver] fix c&p fault (PR:12163, 1 commit, 1 file changed)
    • Libdvd streaming for DVD images (PR:12158, 2 commits, 7 files changed)
    • [android] Android O dropped some legacy stuff so let's actually add "… (PR:12165, 1 commit, 1 file changed)
    • KODI: Update NEON support (PR:12034, 1 commit, 9 files changed)
    • CHG: [droid;amc] Dynamic surface view instances (PR:11988, 3 commits, 15 files changed)
  2. pvr.octonet:
    • AppVeyor: Update build instructions for Kodi master (37abebb5)
    • Travis: Update build instructions for Kodi master (7b9ec7d8)
    • README: Update build path (9bbd7cf3)
  3. newclock5:
    • New 4.11.3 kernel
    • PR:352: Fix: set wrong variable (libcec)
      • DVDDemuxFFMPEG: Increase FFMPEG_FILE_BUFFER_SIZE to 128K (b1e48e8c)
      • DVDDemuxFFmpeg: Use FFMPEG_FILE_BUFFER_SIZE for max_packet_size (4384f521)
    • Commits no longer in build:
      • ffmpeg: hevc: fixup non-neon (c55065ea)
      • ffmpeg: hevc: fixup x86 (89406eeb)
      • fixup: MMALFFmpeg: Add Sand/YUVUV128 support (ded85bf9)
      • fixup! MMALFFmpeg: Add Sand/YUVUV128 support (c04a31f4)
      • ffmpeg: hevc: fixup pi1 (bbc3e101)
  4. kernel 4.11.y:
    • Commits no longer in build:
      • staging: vc04_services: Fix bulk cache maintenance (195de126)
  5. Additional commits/pull requests/changes not yet merged upstream:
    • Added: [pkg] PR:352: Fix: set wrong variable (libcec)
Texture Cache Maintenance Utility: Preload your texture cache for optimal UI performance. Remotely manage media libraries. Purge unused artwork to free up space. Find missing media. Configurable QA check to highlight metadata issues. Aid in diagnosis of library and cache related problems.
This is going to be a tough problem for others to reproduce. I am not able to play music playlists using the Kodi-Alexa skill for the Amazon Echo.

Here is the playlist:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="songs">
<name>Classical</name>
<match>all</match>
<rule field="genre" operator="is">
<value>Classical</value>
</rule>
<limit>100</limit>
</smartplaylist>


This result form the Kodi logfile is this:

16:13:25.428 T:1943417488 NOTICE: VideoPlayer: Opening: special://profile/playlists/music/Classical.xsp
16:13:25.428 T:1943417488 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
16:13:25.429 T:1855976352 NOTICE: Creating InputStream
16:13:25.433 T:1855976352 NOTICE: Creating Demuxer
16:13:25.437 T:1855976352 ERROR: Open - error probing input format, special://profile/playlists/music/Classical.xsp
16:13:25.437 T:1855976352 ERROR: OpenDemuxStream - Error creating demuxer
16:13:25.438 T:1855976352 NOTICE: CVideoPlayer::OnExit()
16:13:25.438 T:1943417488 ERROR: Playlist Player: skipping unplayable item: 0, path [special://profile/playlists/music/Classical.xsp]
16:13:25.446 T:1943417488 NOTICE: CVideoPlayer::CloseFile()
16:13:25.446 T:1943417488 NOTICE: VideoPlayer: waiting for threads to exit
16:13:25.446 T:1943417488 NOTICE: VideoPlayer: finished waiting
16:13:25.446 T:1943417488 NOTICE: CVideoPlayer::CloseFile()
16:13:25.446 T:1943417488 NOTICE: VideoPlayer: waiting for threads to exit
16:13:25.446 T:1943417488 NOTICE: VideoPlayer: finished waiting

The playlist works fine run manually.

The developer of the Kodi skill suggests that a parameter in the playlist function call used in his skill may have been depreciated between Kodi 17 and 18. He uses call Player.Open with the "file" parameter set to the playlist file. Is that possible?
  • 1
  • 122
  • 123
  • 124(current)
  • 125
  • 126
  • 495

Logout Mark Read Team Forum Stats Members Help
LibreELEC Testbuilds for RaspberryPi (Kodi 18.0)24