• 1
  • 225
  • 226
  • 227(current)
  • 228
  • 229
  • 495
v18 LibreELEC Testbuilds for RaspberryPi (Kodi 18.0)
I just noticed another quirk/bug...

I have a show that is partially watched, 15:42s remaining of 22:03s, and Kodi correctly identifies it as so but in the show list when I filter on UnWatched it is not showing up. Only when I change the filter to Watched (Unexpected) or All Videos (Expected) it shows up. This used to be previous behavior but not sure when this fully happened since I regularly clean out my shows when they are finished being watched.

I've noticed this on the LibreELEC version but NOT in the nightly MAC clients provided by the Kodi team.

I've attached a debug log http://sprunge.us/CUTe
HTPC(s): All running LibreELEC
  • AMD 2200G APU on Gigabyte AB350N-Gaming WIFI-CF
  • RPI3 x2 | RPI2 x2
NAS: FreeNAS (Latest Stable) | NFS/CIFS
(2017-09-26, 16:25)pyrodex Wrote: I just noticed another quirk/bug...

I have a show that is partially watched, 15:42s remaining of 22:03s, and Kodi correctly identifies it as so but in the show list when I filter on UnWatched it is not showing up. Only when I change the filter to Watched (Unexpected) or All Videos (Expected) it shows up. This used to be previous behavior but not sure when this fully happened since I regularly clean out my shows when they are finished being watched.

I've noticed this on the LibreELEC version but NOT in the nightly MAC clients provided by the Kodi team.

I've attached a debug log http://sprunge.us/CUTe

Don't know.

You say "I have a show that is partially watched" but I assume you mean an episode?

It could be an Estuary issue, maybe report it there. If you're sure it's only LE (no idea why that would be) then identifying when it started would help.

It's a little hard to say what is happening without exact steps/screens to reproduce - there are a number of views that allow you to filter all/watched/unwatched, which one are you using? I'm not sure what criteria the filter is using (probably playcount, possibly others) but you can check the metadata for your episodes using texturecache.py.
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-09-26, 16:44)Milhouse Wrote:
(2017-09-26, 16:25)pyrodex Wrote: I just noticed another quirk/bug...

I have a show that is partially watched, 15:42s remaining of 22:03s, and Kodi correctly identifies it as so but in the show list when I filter on UnWatched it is not showing up. Only when I change the filter to Watched (Unexpected) or All Videos (Expected) it shows up. This used to be previous behavior but not sure when this fully happened since I regularly clean out my shows when they are finished being watched.

I've noticed this on the LibreELEC version but NOT in the nightly MAC clients provided by the Kodi team.

I've attached a debug log http://sprunge.us/CUTe

Don't know.

You say "I have a show that is partially watched" but I assume you mean an episode?

It could be an Estuary issue, maybe report it there. If you're sure it's only LE (no idea why that wild be) then identifying when it started would help.

It's a little hard to say what is happening without exact steps/screens to reproduce - there are a number of views that allow you to filter all/watched/unwatched, which one are you using? I'm not sure what criteria the filter is using (probably playcount, possibly others) but you can check the metadata for your episodes using texturecache.py.

@Milhouse

It is an "Episode" in the TV section, not PVR, and the DB flags it properly as partial. If you are in the TV section and hit the left arrow to bring up the settings for that view/filters/etc. I have by default set to "Unwatched" but I can't view any partial ones in LibreELEC boxes unless I switch it to ALL or Watched.

I have a Mac with KODI Nightly installed accessing the same backend mysql DB my RPI's use that doesn't exhibit the issue.

I would agree with an Estuary issue if you aren't pulling the latest updates for those and the Mac KODI Nightly does today.
HTPC(s): All running LibreELEC
  • AMD 2200G APU on Gigabyte AB350N-Gaming WIFI-CF
  • RPI3 x2 | RPI2 x2
NAS: FreeNAS (Latest Stable) | NFS/CIFS
@Milhouse
In the samba 4.7.0 PR I don't think that this is correct:

Code:
Checking errno of iconv for illegal multibyte sequence: "84"

I may be very mistaken tho.
From looking at the test code itself it looks like the message is misleading, it doesn't look for errcode value itself, but for returncode which will be 0 (have EILSEQ) or -1 (doesn't have EILSEQ)

The define resultiing from this is
Code:
#define HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE 1
Which is the same value I get in native compilation on x64 box.

Compiling the test code natively on the pi with glibc 2.26, no external libiconv I get retcode 0 and I think that the retcode value should be put in cache.
Cross-compiling samba with value 0 in cache succeds, however I haven't had time to thoroughly test it.
Again I may be mistaken.
(2017-09-26, 16:56)asavah Wrote: Again I may be mistaken.

Thanks, I think you're probably right - I've changed "84" to "0" in the PR.

This is the conf check as it appears in bin/config.log, before:
Code:
[2/2] Linking default/testprog
['/home/neil/projects/LibreELEC.tv/build.LibreELEC-Generic.x86_64-9.0-devel/toolchain/bin/x86_64-libreelec-linux-gnu-gcc', 'default/test_1.o', '-o', '/home/neil/projects/LibreELEC.tv/build.LibreELEC-Generic.x86_64-9.0-devel/samba-4.7.0/bin/.conf_check_0/testbuild/default/testprog', '-march=x86-64', '-m64', '-Wl,--as-needed', '-fuse-linker-plugin', '-flto', '-lreadline', '-lpthread', '-Wl,-no-undefined']
84

returncode 0
ok
and after:
Code:
[2/2] Linking default/testprog
['/home/neil/projects/LibreELEC.tv/build.LibreELEC-Generic.x86_64-9.0-devel/toolchain/bin/x86_64-libreelec-linux-gnu-gcc', 'default/test_1.o', '-o', '/home/neil/projects/LibreELEC.tv/build.LibreELEC-Generic.x86_64-9.0-devel/samba-4.7.0/bin/.conf_check_0/testbuild/default/testprog', '-march=x86-64', '-m64', '-Wl,--as-needed', '-fuse-linker-plugin', '-flto', '-lreadline', '-lpthread', '-Wl,-no-undefined']
0

returncode 0
ok

I guess it doesn't make a significant difference, as the define for HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE is the same before/after (presumably it only matters if the returncode is -1).
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-09-26, 17:45)Milhouse Wrote: I guess it doesn't make a significant difference, as the define for HAVE_ICONV_ERRNO_ILLEGAL_MULTIBYTE is the same before/after (presumably it only matters if the returncode is -1).

Yep.
New LibreELEC.tv Leia build #0926: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.13.3 #1 Tue Sep 26 21:04:48 BST 2017 armv6l GNU/Linux

# vcgencmd version
Sep 22 2017 21:36:43
Copyright (c) 2012 Broadcom
version f5217b8887607d0dd890a434de9c73d9aa9a7c0f (clean) (release)

# lsb_release
LibreELEC (Milhouse): devel-20170926210340-#0926-g195c4b1 [Build #0926]

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

Based on tip of LibreELEC.tv master (195c4b1, changelog) and tip of XBMC master (6f99b6e, changelog) with the following modifications: Build Highlights:
  1. Re-enable pvr.octonet
  2. Fix addon installation broken in #0923
Build Details:
  1. LibreELEC.tv:
    • options: fix addon path for projects with devices (PR:2038, 1 commit, 1 file changed)
  2. XBMC:
    • [addons] update vfs addon interface doxygen docu (PR:12838, 1 commit, 1 file changed)
    • [addons] fix addon install if not present before (PR:12825, 3 commits, 5 files changed)
  3. pvr.octonet:
    • Update to PVR API version 5.7.0 (e9b4c05)
  4. Additional commits/pull requests/changes not yet merged upstream:
    • Update: [env] patch: pvr addons: disable broken addons
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.
Weekly Linux 4.14-rc2 build #0926x: RPi / RPi2
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.
Don't know if this is an bug or hardware related (Pi3)

While recording an HD channel and watching an movie in 5.1 multichannel i get nearly every minute audio distortion.

(DVB-S stick, different storage for recording and media library)

Is this too much for my Pi?

Gesendet von meinem Xperia Z3C mit Tapatalk
I'm having trouble using the South Park addon - the audio is playing fine, but the video is stuttering and lagging heavily. Is there anything I can do about it?

Here's the log from the moment I start an episode: https://pastebin.com/UMKjkqjb
(2017-09-27, 21:41)dantist Wrote: I'm having trouble using the South Park addon - the audio is playing fine, but the video is stuttering and lagging heavily. Is there anything I can do about it?

Here's the log from the moment I start an episode: https://pastebin.com/UMKjkqjb
Full debug log (wiki) only please.
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-09-27, 21:45)Milhouse Wrote: Full debug log (wiki) only please.

There we go: https://paste.ubuntu.com/25629035/
New LibreELEC.tv Leia build #0927: RPi / RPi2
(Supercedes previous build)

Code:
# uname -a
Linux rpi512 4.13.3 #1 Wed Sep 27 21:38:53 BST 2017 armv6l GNU/Linux

# vcgencmd version
Sep 22 2017 21:36:43
Copyright (c) 2012 Broadcom
version f5217b8887607d0dd890a434de9c73d9aa9a7c0f (clean) (release)

# lsb_release
LibreELEC (Milhouse): devel-20170927213746-#0927-g195c4b1 [Build #0927]

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

Based on tip of LibreELEC.tv master (195c4b1, changelog) and tip of XBMC master (aa4364c, changelog) with the following modifications:
  • Includes newclock5 patches
  • Excludes the LibreELEC linux-01-RPi_support patch in favour of sourcing these and possibly more recent patches directly from kernel branch rpi-4.13.y
  • Includes latest bcm2835-driver master (f8d2f54, ahead +6)
  • Includes latest kodi-platform master (36fb493)
  • Includes latest libcec master (8adc786, ahead +26)
  • Includes latest libnfs master (3ba2a2c, ahead +101)
  • Includes latest p8-platform master (a822e19)
  • Includes latest addons: inputstream.adaptive (dde3921), inputstream.rtmp (e094fa3), peripheral.joystick (cc14287), pvr.argustv (23cc0e8), pvr.demo (122dedd), pvr.dvblink (816f90c), pvr.dvbviewer (8741c8b), pvr.filmon (34dca04), pvr.hdhomerun (ace19fa), pvr.hts (53118d8), pvr.iptvsimple (ac4f4bd), pvr.mediaportal.tvserver (c86ab35), pvr.mythtv (8965048), pvr.nextpvr (03933e9), pvr.njoy (cc1cb56), pvr.octonet (e9b4c05, +1), pvr.pctv (549f690), pvr.stalker (e15edca), pvr.teleboy (48febd7, +3), pvr.vbox (ff01396), pvr.vdr.vnsi (f3f80d5), pvr.vuplus (5e154bc), pvr.wmc (7e2cb4b), pvr.zattoo (12123dd, +1)
  • Include [env] 22775c5: include crazycat dvb drivers addon in image
  • Include [env] compare: dmidecode: initial package
  • Include [env] compare: kodi updates (ffmpeg-3.3.4)
  • Include [env] patch: RPi/RPi2: enable Broadcom WiFi debugging (see details)
  • Include [env] patch: libcec: don't link non-existant libtinfo
  • Include [env] patch: rev hack for kodi
  • Include [env] patch: tvheadend42: fix makefile patch
  • Include [env] patch: Add experimental splash video for RPi
  • Include [env] patch: Bump included addon versions to prevent online updates
  • Include [env] patch: HACK: Disable multiple PVR addons during migration. Always enable inputstream.* and os.*
  • Include [env] patch: Add kodi binary addons (pvr, adsp, inputstream, vfs, other)
  • Include [env] patch: pvr addons: disable broken addons
  • Include [env] PR:1776: Don't cause system to hang on halt/reboot when net-booting
  • Include [env] PR:1791: nss/nspr: include in main image [rfc]
  • Include [env] PR:1835: add support for optional kernel modules in image and from addons
  • Include [env] PR:1978: linux: update to linux-4.13.4
  • Include [env] PR:2002: linux: include HBR and ELD fixes for Intel
  • Include [env] PR:2037: samba: update to samba-4.7.0
  • Include [pkg] patch: skin.estuary: reduce system info font size (kodi)
  • Include [pkg] PR:82: #Backup: get free space of selected folder (service.libreelec.settings)
  • Include [pkg] PR:234: implement intensity compensation for VC-1 decoding for Ivybridge and better (intel-vaapi-driver)
  • Include [pkg] PR:260: Fix Seeking with VC1 after 6702b01ee3598017f05374bfc7956493f790361c (intel-vaapi-driver)
  • Include [pkg] PR:12826: Linux: add missing wrapper functions to fix playing DVD folders over network
  • Include [pkg] PR:12844: [PVR] Make PVR database threadsafe.
Build Highlights:
  1. PR:12844: [PVR] Make PVR database threadsafe.
  2. Drop PR:12715, served its purpose
Build Details:
  1. XBMC:
    • [addons] remove the CAddonMgr::GetInstance() usage (PR:12839, 3 commits, 69 files changed)
    • [cosmetics] update skin docs for PR10850 (PR:12845, 1 commit, 1 file changed)
  2. pvr.teleboy:
    • Make loading guide multithreaded (48febd7)
  3. pvr.zattoo:
    • Make loading EPG multithreaded (12123dd)
  4. Additional commits/pull requests/changes not yet merged upstream:
    • Added: [pkg] PR:82: #Backup: get free space of selected folder (service.libreelec.settings)
    • Added: [pkg] PR:12844: [PVR] Make PVR database threadsafe.
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.
I'm getting intermittent kodi lockups when switching from live TV directly to a file playback. I narrowed the issue down to a build #0913. Build #0912 and older are ok.
Debug log - http://sprunge.us/FEOX
(2017-09-28, 00:28)smp1 Wrote: I'm getting intermittent kodi lockups when switching from live TV directly to a file playback. I narrowed the issue down to a build #0913. Build #0912 and older are ok.
Debug log - http://sprunge.us/FEOX

Are these permanent Kodi lockups (so you need to kill Kodi, or power cycle) or are they momentary lockups (how long?)
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.
  • 1
  • 225
  • 226
  • 227(current)
  • 228
  • 229
  • 495

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