• 1
  • 407
  • 408
  • 409(current)
  • 410
  • 411
  • 468
Aeon Madnox for Krypton / Jarvis - (no longer in development)
I updated to newest krypton version. I have now the problem when im playing music with lyrics displaying its not possible to get back to main menu with BACKSPACE or ESC. I have to press C and chose delete lyrics. Then its possible. In old version i didnt had that
@Papo1980205

For KodiFlix DVD Shelf you need to go into viewtype settings and then view options and highlight layout and press return to cycle through the various KodiFlix layout options. Same probably for open case as well all in 'View Options'.

Please note The DVD shelf isn't that great and is WIP, looking at a different solution but just on the todo list at the moment.

@charliekey74

I don't have this issue, I've seen it reported before but when I have lyrics active the back key still seems to work for me, press once to back out of lyrics then again to back out of music viz.
SKIN: Aeon Madnox
RIP Schimi2k, we miss you.
When I grow up I want to be a skilled skinner
Thank me by ⬇ adding to my + reputation
Thanks Mike
(2017-02-15, 12:37)charliekay74 Wrote: I updated to newest krypton version. I have now the problem when im playing music with lyrics displaying its not possible to get back to main menu with BACKSPACE or ESC. I have to press C and chose delete lyrics. Then its possible. In old version i didnt had that

I have the same issue, if you remove
Code:
<visible>Skin.HasSetting(manfeedlyrics)</visible>
it works for me.
you can dl the modded file here
https://drive.google.com/open?id=0B9bSf6...TRCYnltZTA
(2017-02-11, 00:44)Pr.Sinister Wrote: #3 - DialogPlayerProcessInfo.xml is missing from the 1080i folder. It is a new dialog meant to replace what you saw when you pressed 'o' (CodecInfo)

I looked at the one made by Gade for his Rapier skin and it was nice and clean so i modded it for Aeon MadNox.

Nice work Pr.Sinister. I'm rigging it to work in the latest Amber skin.

Unfortunately we're still missing the Video codec. It seems rather silly that the new *equivalent* of CodecInfo ... doesn't, erm, actually display the video codec Smile

I wonder if there's any documentation for this section of the Kodi codebase ...
(2017-02-14, 22:01)bsoriano Wrote: Mike D,

Thanks for creating a Leia branch in your GitHub. I pushed the commits with the changes I felt safe in making (basic replaces of deprecated infobools). It is important to note that the changes for the infobools are valid for Krypton also. I tested using the latest Leia nightly, and the skin runs well (movies play, tv episodes, music videos, playlists, basic pvr without epg). I will now proceed to customize the skin (menu items, widgets, backgrounds, etc.) and will let you know if everything runs well there too. Again, thank you Mike for doing this!

Regards,

Bart

Is this a private branch or am I looking in the wrong place? Thanks
YOYIZDERZOMENEMOHOZEZAZEZDENDERIZHOZEZ
(2017-02-15, 16:59)raspberry_pd Wrote:
(2017-02-11, 00:44)Pr.Sinister Wrote: #3 - DialogPlayerProcessInfo.xml is missing from the 1080i folder. It is a new dialog meant to replace what you saw when you pressed 'o' (CodecInfo)

I looked at the one made by Gade for his Rapier skin and it was nice and clean so i modded it for Aeon MadNox.

Nice work Pr.Sinister. I'm rigging it to work in the latest Amber skin.

Unfortunately we're still missing the Video codec. It seems rather silly that the new *equivalent* of CodecInfo ... doesn't, erm, actually display the video codec Smile

I wonder if there's any documentation for this section of the Kodi codebase ...

The Codec is there. It is now part of the decoder. when you see something like FF-H264-D3D11VA, FF means the decoder, H264 is the codec and D3D11VA is the DXVA Hardware decoding.

If you play an XviD avi file, it will probably show FF-MPEG4... That means FF decoder, MPEG4 Codec and no hardware decoding. An mpg file will be FF-MPEG1VIDEO, etc...

If you prefer just seeing the Codec, you can change

Code:
<label fallback="31001">[UPPERCASE]$INFO[Player.Process(videodecoder)][/UPPERCASE]</label>

to

Code:
<label fallback="31001">[UPPERCASE]$INFO[VideoPlayer.VideoCodec][/UPPERCASE]</label>

Personally, i would just do this:

Code:
<label fallback="31001">[UPPERCASE]$INFO[Player.Process(videodecoder)][/UPPERCASE] ($INFO[VideoPlayer.VideoCodec])</label>

That last would display like this:

FF-H264-D3D11VA (h264)

All the InfoLabels are well documented. Find the ones pertinent to this topic here: http://kodi.wiki/view/InfoLabels#Player_labels
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
Nice work on the update Mike D, all the new widgets work just fine now for the latest skin helper widgets script.
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
I have adjusted a little bit the codec info code from Pr.Sinister (thx for that code Wink )

original code

Image




adjusted code

Image

Link for the DialogPlayerProcessInfo.xml file :https://www.file-upload.net/download-123...o.xml.html
@mario S how do you get all the cores to show up like that?
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
(2017-02-15, 19:40)ShadowTek Wrote: @mario S how do you get all the cores to show up like that?

It depends on the OS.

Windows will only show the 1 and Android/Linux will show all cores
[4 Kodi Clients + 4 Norco RPC-4224 Media Servers w/376 TB HDD Space]
(2017-02-15, 19:41)Pr.Sinister Wrote:
(2017-02-15, 19:40)ShadowTek Wrote: @mario S how do you get all the cores to show up like that?

It depends on the OS.

Windows will only show the 1 and Android/Linux will show all cores

Ahh OK got it, thanks!
My Madnox Mods | Nox Version Guide
---------------------------------------------------------------
Movie Logo Requests | Studio Logo Requests
Logo's Made So Far:
838
Why is there a comma separator in the resolution? 1,920x1,088 px
It's a little bit annoying. It should be like 1920x1088 px
(2017-02-15, 17:12)bobrap Wrote:
(2017-02-14, 22:01)bsoriano Wrote: Mike D,

Thanks for creating a Leia branch in your GitHub. I pushed the commits with the changes I felt safe in making (basic replaces of deprecated infobools). It is important to note that the changes for the infobools are valid for Krypton also. I tested using the latest Leia nightly, and the skin runs well (movies play, tv episodes, music videos, playlists, basic pvr without epg). I will now proceed to customize the skin (menu items, widgets, backgrounds, etc.) and will let you know if everything runs well there too. Again, thank you Mike for doing this!

Regards,

Bart

Is this a private branch or am I looking in the wrong place? Thanks

Mike D created another repo in his own GitHub, skin.aeon.madnox.leia, (https://github.com/MadMikeDoc/skin.aeon.madnox.leia) so it's not really a branch in the same place where the Krypton MadNox is (which is in Mike Silvo's GitHub).

Regards,

Bart
(2017-02-15, 16:43)meowmoo Wrote:
(2017-02-15, 12:37)charliekay74 Wrote: I updated to newest krypton version. I have now the problem when im playing music with lyrics displaying its not possible to get back to main menu with BACKSPACE or ESC. I have to press C and chose delete lyrics. Then its possible. In old version i didnt had that

I have the same issue, if you remove
Code:
<visible>Skin.HasSetting(manfeedlyrics)</visible>
it works for me.
you can dl the modded file here
https://drive.google.com/open?id=0B9bSf6...TRCYnltZTA
Thanks, with your file it works again[THUMBS UP SIGN].

Aeon madnox sometimes is not so stable. When trying to go back to home menu from some menu points, from time to time there is only a black screen and nothing is possible. Have to force kodi to close via task manager. And can someone describe how music info mode works, is it displaying the panels automaticly and scrolling through them? Similar artists are not shown at my madnox...
  • 1
  • 407
  • 408
  • 409(current)
  • 410
  • 411
  • 468

Logout Mark Read Team Forum Stats Members Help
Aeon Madnox for Krypton / Jarvis - (no longer in development)39