• 1
  • 49
  • 50
  • 51(current)
  • 52
  • 53
  • 84
Linux OpenELEC Testbuilds for x86 (Kodi 17)
(2016-01-16, 07:27)gjwAudio Wrote: Hi Folks

Since late December I've been running Milhouse's OE Generic.x86 builds on my Intel 847 NUC. I love how the picture quality has improved on my TV - great work - thank you to all hands involved !

Today I wish to report a little showstopper - the audio volume will not change in response to my IR remote control commands Sad.

The on-screen indicator pops up, but the actual audio level will not shift - up or down. BTW, this is using my regular skin of choice - Xonfluence (mod of Confluence).

The last working version for me was #0110. Subsequent versions (#0112 and #0115) behave the same - no audio change via remote is possible. Just to be sure, I tried #0115 with good old Confluence too - same non-response condition.

LOG from #0110 - volume level working

LOG from #0115 - volume level does not respond

Has anyone else come across this ?

Thanks

(edit to clarify: when using IR remote)
Thanks Milhouse for the frequent updates.
I am experiencing the same behavior. I have a custom keymap, and volume keys do not work properly. Am using a ThinkPad T420, and the built in keyboard.

Thanks
(2016-01-16, 21:56)menakite Wrote: I think I've just reproduced the rating issue (on Pi builds):
Code:
20:43:09 62750.363281 T:1553388448   DEBUG: scraper: GetIMDBRatingById returned <details><url cache="tt0477347-main.html" function="ParseIMDBRating">http://akas.imdb.com/title/tt0477347/|accept-language=en-us</url></details>
20:43:09 62750.375000 T:1553388448   DEBUG: scraper: ParseIMDBRating returned <details><rating>6.4</rating><votes>219,895</votes></details>

but "texturecache.py Jd all @extrajson.movies=rating,votes,ratings" says:
Code:
"rating": 0.0,
        "ratings": [
          {
            "default": true,
            "name": "default",
            "rating": 0.0,
            "votes": 0
          }
        ],
        "votes": "0"
I believe it should be reproducible with NFO files too (parsing scraper infos and NFOs use the same logic). Updating rating and votes via texturecache.py works ("imdb movies | set").
Guess something is still not right with PR8080.

Edit: database has:
Code:
rating_id = 1116
   media_id = 49
media_type = movie
rating_type = default
     rating = 0.0
      votes = 0

Looks like you're right. I've posted a comment on that PR about it.

Thanks.
I have a fix for that. Newly scraped movies had an invalid rating/votes so the label is empty - they need to be refreshed and/or rating updated using texturecache.py.

ListItem.Rating(default) works here where rating is > 0.0 (and votes > 0 for Votes and RatingAndVotes).
Please note that right now only "default" is usable, I'm not aware of any scraper returning multiple ratings as of now. You can test with NFOs though. I believe the format is:
Code:
<ratings>
  <rating name="imdb"> <!-- ListItem.RatingAndVotes(imdb) -->
    <value>8.9</value>
    <votes>12345</votes>
  </rating>

  <rating name="hitchermdb" default="true"> <!-- ListItem.RatingAndVotes(hitchermdb) or ListItem.RatingAndVotes(default) -->
    <value>0.1</value>
    <votes>5</votes>
  </rating>
</ratings>
I have a strange problem with #0115.

I run a TV-Headend Server (also newest build from Milhouse) on my htpc. At Live-TV, sometimes (not always!) I have no sound. My AVR recognize a sound signal (5.1 or 2.0 Channels) but gives me no sound.

CodecInfo show me also AC3, but the bitrate is 9kbit/s.

Any other sound (Radio, movie files, etc.) works perfect
(2016-01-17, 01:57)dirtydesaster Wrote: I have a strange problem with #0115.

No debug log (wiki), no problem.
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 OpenELEC Krypton build #0117: Generic
(Supercedes previous build)

Code:
# uname -a
Linux OpenELEC 4.4.0 #1 SMP Mon Jan 18 00:44:13 GMT 2016 x86_64 GNU/Linux

# lsb_release
OpenELEC (Milhouse) - Version: devel-20160118004318-#0117-gaee4a3b [Build #0117]

Based on tip of OpenELEC master (aee4a3ba, changelog) and tip of XBMC master (e9ecdb72, changelog) with the following modifications: Build Highlights:
  1. VideoPlayer updates
  2. Fix for delays when navigating Settings > Add-ons
  3. Fix libnfs memory leak
  4. Dropped Joystick controller PR8807, needs a rebase, breaks volume
  5. Fix IMDB ratings
Build Details:
  1. XBMC:
    • FFmpeg: Bump to 2.8.5-Jarvis-rc1 (PR:8874, 1 commit, 1 file changed)
    • JSON-RPC: Improve performance of retrieving movies/tvshows/episodes/musicvideos with additional details (PR:8862, 3 commits, 8 files changed)
    • JSON-RPC: make it possible to retrieve all seasons (independent of tvshows) (PR:8871, 2 commits, 3 files changed)
    • [interfaces][json-rpc] Add video stream selection. (PR:8877, 1 commit, 8 files changed)
    • VideoPlayer: allow dts of video streams to jump bach more up to 500ms… (PR:8883, 1 commit, 1 file changed)
    • [docs/osx] fix typo (PR:8888, 1 commit, 1 file changed)
    • [MusicDB] Add artist roles to handle Composer, Conductor, DJMixer etc. Tags (PR:8015, 1 commit, 36 files changed)
    • remove unused private fields (PR:8821, 1 commit, 12 files changed)
    • VideoPlayer fixes (PR:8894, 2 commits, 8 files changed)
    • VideoPlayer: remove dead code (PR:8895, 1 commit, 10 files changed)
    • VideoPlayer: revert 20e6f03 and fix possible segfault (PR:8897, 1 commit, 8 files changed)
    • VideoPlayer: gapless playback on stream change (PR:8886, 8 commits, 13 files changed)
  2. libnfs:
    • Add a configure option to disable the utils compilation (PR:133, 1 commit, 2 files changed)
    • Support Win32 compilation with Mingw (PR:131, 10 commits, 15 files changed)
    • Readme update (PR:134, 3 commits, 1 file changed)
    • Don't leak a rpde_cb_data structure on each opendir() (d8274472)
  3. pvr.argustv:
    • Initial Kodi Krypton version. (fc8291ae)
  4. pvr.demo:
    • Initial Kodi Krypton version. (97bb7552)
  5. pvr.dvblink:
    • Initial Kodi Krypton version. (63bfbf82)
  6. pvr.dvbviewer:
    • Initial Kodi Krypton version. (7b3e7391)
  7. pvr.filmon:
    • Initial Kodi Krypton version. (2bca8b22)
  8. pvr.hdhomerun:
    • Initial Kodi Krypton version. (e8986563)
  9. pvr.hts:
    • fix compiler warning: -Wsign-compare (PR:171, 1 commit, 4 files changed)
    • Fix schedules dirty flag handling. (PR:170, 1 commit, 2 files changed)
    • Initial Kodi Krypton version. (14aa3a2d)
  10. pvr.iptvsimple:
    • Initial Kodi Krypton version. (878cf5d9)
  11. pvr.mediaportal.tvserver:
    • Initial Kodi Krypton version. (32892086)
  12. pvr.mythtv:
    • Initial Kodi Krypton version. (9fe08e31)
  13. pvr.nextpvr:
    • Initial Kodi Krypton version. (60dc7c98)
  14. pvr.njoy:
    • Initial Kodi Krypton version. (e98795bb)
  15. pvr.pctv:
    • Initial Kodi Krypton version. (1241d079)
  16. pvr.stalker:
    • Initial Kodi Krypton version. (8849a3c2)
  17. pvr.vbox:
    • Initial Kodi Krypton version. (67158e6d)
  18. pvr.vdr.vnsi:
    • consider cient setting for timeshift (PR:51, 2 commits, 2 files changed)
    • Initial Kodi Krypton version. (b7596ae6)
  19. pvr.vuplus:
    • Initial Kodi Krypton version. (b6106dc9)
  20. pvr.wmc:
    • Initial Kodi Krypton version. (60d8c0b9)
  21. xbmc/master (FernetMenta):
    • New commits in this build:
      • [cmake] File trees for OSX (07f1d844)
      • [cmake] Compile DirectoryNodeInProgressTvShows (6e195f42)
      • [cmake] Disable core_link_library on OSX (af31f756)
      • [cmake] Modernize FindUUID.cmake and the crossguid CMakeLists.txt (9790f596)
      • [cmake] SDL is a required dependency on OSX (ba91fe44)
      • [cmake] Change FindSdl.cmake to support SDL1 on OSX (896ab7e5)
      • [cmake] Use FFMPEG from prebuilt dependencies on OSX (39e41380)
      • [cmake] Make autoconf available in OSX (77a14e7a)
      • [cmake] Fixes in compiler and linker flags for OSX (940ea48f)
      • [cmake] Add framework libraries for OSX (41915611)
      • [cmake] Fix FindOpenGl.cmake and FindPython.cmake for OSX (c19a10bb)
    • Commits no longer in build:
      • VideoPlayer: drop AE chache from displayed aq (codec screen) (9b55ab1d)
      • VideoPlayer: drain decoder on stream change (0ceed68d)
      • VideoPlayer: avoid killing queued frames on reconfigure of renderer (d86d7218)
      • VideoPlayer: optimze configure of renderer (ec0fd228)
      • VideoPlayer: drop unused members (f830ccc1)
      • VideoPlayer: improve av sync after stream changes (4aa45a28)
      • VideoPlayer: fix drain for ffmpeg when filters are involved (598f3317)
  22. Additional commits/pull requests/changes not yet merged upstream:
    • Added: [pkg] PR:8889: [videoinfotag] Avoid overwriting rating with garbage on parse.
    • Added: [pkg] PR:8900: [addons] improve performance of GetAvailableUpdates
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.
(2016-01-18, 03:43)Milhouse Wrote: New OpenELEC Krypton build #0117: Generic
(Supercedes previous build)

Hi Milhouse... Great Going !

This build cures the audio volume control issue, and co-incidentally "fixes" the anomaly I noticed with the Video Extras addon.

During the last week I've added a few movies to the library with accompanying extras (ie: additional material taken from Special Features sections), and... the little "E" symbol that should appear (in Media info 3 view) was not showing up.

This occurred only for the newly added movies - older entries displayed their "E" symbols as before. After updating to Krypton build #0117 - and a reboot or two - everybody has their little "E"s showing, where appropriate. Excellent.

Thanks for all your hard work Blush.
::  LibreELEC 9.2.6 RELEASE - Generic x86_64  ::  Intel 847 NUC  ::  KVR1333D3S9/4G  ::  Kingston SMS200S3/30G mSATA  ::  MS 1044 MCE keyboard  ::  GP-IR02BK remote  ::  Xonfluence  ::  10.9TiB on FreeNAS v11.3-U5 (RAID-Z2)  ::
Hi

Testing new build #0117

Issues:
- no menu (GUI) audio
- slow 1st time access to LAN (wired by the way). Then 2nd attempt no problem.
- LIVE TV is choppy and no sound

http://xbmclogs.com/pxamxsxkt

(Complaining, but I appreciate very much your work. And I will keep testing your builds. As mentioned earlier build #1121 still works.)
KODI 20 - LibreELEC 11

Intel NUC 4250U (Haswell) in Abel H2 chassis, Philips 55OLED804
(2016-01-18, 10:48)Ipaddle Wrote: Hi

Testing new build #0117

Issues:
- no menu (GUI) audio
- slow 1st time access to LAN (wired by the way). Then 2nd attempt no problem.
- LIVE TV is choppy and no sound

http://xbmclogs.com/pxamxsxkt

(Complaining, but I appreciate very much your work. And I will keep testing your builds. As mentioned earlier build #1121 still works.)

Quote:09:38:34 4.931403 T:140528428173056 DEBUG: CActiveAESink::OpenSink - trying to open device ALSA:pulse
09:38:34 4.931413 T:140528428173056 INFO: CAESinkALSA::Initialize - Attempting to open device "pulse"
09:38:34 4.932383 T:140528428173056 INFO: CAESinkALSA::Initialize - Opened device "pulse"
09:38:34 4.932517 T:140528428173056 DEBUG: CAESinkALSA::InitializeHW - Request: periodSize 2205, bufferSize 8820
09:38:34 4.933299 T:140528428173056 DEBUG: CAESinkALSA::InitializeHW - Got: periodSize 2205, bufferSize 8820
09:38:34 4.933331 T:140528428173056 DEBUG: CAESinkALSA::InitializeHW - Setting timeout to 200 ms
09:38:34 4.934685 T:140528428173056 DEBUG: CAESinkALSA::GetChannelLayout - Input Channel Count: 2 Output Channel Count: 2
09:38:34 4.934712 T:140528428173056 DEBUG: CAESinkALSA::GetChannelLayout - Requested Layout: FL,FR
09:38:34 4.934721 T:140528428173056 DEBUG: CAESinkALSA::GetChannelLayout - Got Layout: FL,FR (ALSA: none)
09:38:34 4.934729 T:140528428173056 DEBUG: CActiveAESink::OpenSink - ALSA Initialized:
09:38:34 4.934737 T:140528428173056 DEBUG: Output Device : PulseAudio Sound Server
09:38:34 4.934743 T:140528428173056 DEBUG: Sample Rate : 44100
09:38:34 4.934750 T:140528428173056 DEBUG: Sample Format : AE_FMT_FLOAT
09:38:34 4.934756 T:140528428173056 DEBUG: Channel Count : 2
09:38:34 4.934762 T:140528428173056 DEBUG: Channel Layout: FL,FR
09:38:34 4.934768 T:140528428173056 DEBUG: Frames : 2205
09:38:34 4.934773 T:140528428173056 DEBUG: Frame Size : 8
1) wrong configured audio device - pulseaudio is in use ... Hello @OpenELEC devs: You were warned before that ... but did not care ...
Here for the record:
a) Do not enable alsa's pulseaudio tools
b) Enable pulseaudio in kodi additionally
c) Filter out all devices not being the BT headphone while enumerating here: https://github.com/xbmc/xbmc/blob/master...E.cpp#L384

2) No idea

3) tvheadend / hts do not implement the upcoming isLiveStream yet ... that's most likely causing the issue. <- tvheadend has its own demuxer, so that's not the problem.
First decide what functions / features you expect from a system. Then decide for the hardware. Don't waste your money on crap.
@fritsch yes it's something that will have to be addressed (Pulse, that is).
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.
(2016-01-16, 20:14)Milhouse Wrote:
(2016-01-16, 12:19)Hitcher Wrote: Still present in #0115.

I've also noticed that the IMDB rating isn't working for the last few builds.

Sorry can't help with the fps issue, but the IMDb rating how is this "not working" - not appearing, or not updating (from NFO, JSON, or via an add-on)?

I was going to post today that I'd tested older legacy builds and it was still present when I tried the latest build, and guess what?, it's fixed.
Hey Milhouse

I finally got some time to update to a more recent build of yours (#0117). I have installed a retroarch addon which uses
Code:
pgrep kodi.bin | xargs kill -SIGSTOP
$BASE_DIR/bin/retroarch --menu -c $BASE_DIR/config/retroarch.cfg $ARGS
pgrep kodi.bin | xargs kill -SIGCONT
to pause and resume kodi. Problem is: when I start a game using the mupen64plus core I cannot get back to Kodi after Retroarch is stopped. In the "top" process explorer I can see Kodi beeing in "'T' = traced or stopped" state (which is fine I guess) and when I quit retroarch it changes to "'D' = uninterruptible sleep" and later to "'Z' = zombie". I have to do a "systemctl restart kodi" to bring it back.

It briefly shows the openelec version tag in the top left corner when loading a rom with the mupen64plus core and when exiting retroarch. The tag fades out after a second.
Other cores I tried (2048) are fine.

I tested the older builds and the problem started with build #0101. Build #1228 was fine.
Here is an kodi.old.log after I did the restart: http://sprunge.us/Kfhf
I don't see anything in it though. I can capture something else if it helps though.

Thanks in advance Blush

edit: I did a quick test with #0115 and #0112 and they both do not have this problem! #0110 however has it. Curious if it has something to do with the controller input PR? (though it wasn't in #0101 and #0110)
(2016-01-16, 12:18)SavellM Wrote: So I'm having a weird issue the last 2 or 3 builds.

The audio for movie music, IE in a movie you have scene music, it sounds stretched like an old cassette that's been stretched and it doesn't sound good.

At first I just thought it was poor encoding on 1 movie, but now today tried to watch a few other movies since and they all have it.
And its weird as its just the music, the voice's sound fine or at least from what I can tell.

I am using an Intel NUC 5i3 and would love to figure this out.
Could be something with my audio settings, but not sure what to set it to?
I am using audio passthrough to my AMP.

Is there some logs I can get for you?
If so how?

Ps keep up the good work.

Can anyone help with this?
My full HTPC build log:
http://forum.xbmc.org/showthread.php?tid=129352
Core i3-2120T 2.6Ghz, 4gb Kingston DDR3, mSATA SSD, Moneual 312 Case, GT520 GPU
(2016-01-18, 16:17)Mettbrot Wrote: edit: I did a quick test with #0115 and #0112 and they both do not have this problem! #0110 however has it. Curious if it has something to do with the controller input PR? (though it wasn't in #0101 and #0110)

Joystick controller isn't in #0117. Sounds like the problem is random which makes identifying when it started a problem.
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.
(2016-01-18, 22:37)Milhouse Wrote:
(2016-01-18, 16:17)Mettbrot Wrote: edit: I did a quick test with #0115 and #0112 and they both do not have this problem! #0110 however has it. Curious if it has something to do with the controller input PR? (though it wasn't in #0101 and #0110)

Joystick controller isn't in #0117. Sounds like the problem is random which makes identifying when it started a problem.

Hm. Do you have any idea what I could do to identify this problem? How can it be that the version tag is shown in the top left corner; in which situation?
  • 1
  • 49
  • 50
  • 51(current)
  • 52
  • 53
  • 84

Logout Mark Read Team Forum Stats Members Help
OpenELEC Testbuilds for x86 (Kodi 17)4