Kodi Community Forum
Aeon Madnox for Krypton / Jarvis - (no longer in development) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Skin Archive (https://forum.kodi.tv/forumdisplay.php?fid=179)
+----- Forum: Madnox (https://forum.kodi.tv/forumdisplay.php?fid=314)
+----- Thread: Aeon Madnox for Krypton / Jarvis - (no longer in development) (/showthread.php?tid=230821)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - schimi2k - 2016-03-05

i am just glad that it work now
greets to switzerland btw Smile


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - schimi2k - 2016-03-05

(2016-03-05, 13:07)Deadpool Wrote: Maybe I'm being dumb but it seems like you can't use a lot of the various music views (like Musicflix) when you make a smart playlist, is this deliberate?

not dumb - seems musicplaylists just show views who are set to "all" - maybe wait for DOC ... he is expert ( dont know if there is any playlist code for it )
thx 4 info


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - zorg2000k - 2016-03-05

(2016-03-05, 11:48)P_Jamula Wrote:
(2015-12-10, 00:01)zorg2000k Wrote: Evening all,

Just wanted to see if anyone else is as OCD with metadata details for Music in Kodi with Madnox installed.

I've just finished tagging my whole library, which has taken 3 months off and on....

Small tip for anyone using Madnox and Showcase2 view. For correct Album tagging I made sure the following was completed for each album :

Tools used MusicBrainz Picard, TagRename, along with The AudioDB.com and Fanart.tv websites

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<album>
    <title></title>
    <musicBrainzAlbumID></musicBrainzAlbumID>
    <artist></artist>
    <genre></genre>
    <style></style>
    <mood></mood>
    <releasetype></releasetype>
    <compilation></compilation>
    <review></review>
    <type></type>
    <releasedate></releasedate>
    <label></label>
    <thumb</thumb>
    <path></path>
    <rating></rating>
    <year>2009</year>
    <albumArtistCredits>
        <artist></artist>
        <musicBrainzArtistID></musicBrainzArtistID>
        <joinphrase></joinphrase>
        <featuring></featuring>
    </albumArtistCredits>
    <track>
        <musicBrainzTrackID></musicBrainzTrackID>
        <title></title>
        <position></position>
        <duration></duration>
    </track>
</album>

And for all Artists the following :
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<artist>
    <name></name>
    <musicBrainzArtistID></musicBrainzArtistID>
    <genre></genre>
    <style></style>
    <mood></mood>
    <yearsactive></yearsactive>
    <born></born>
    <formed></formed>
    <biography></biography>
    <died></died>
    <disbanded></disbanded>
    <thumb</thumb>
    <album>
        <title></title>
        <year></year>
    </album>
</artist>

Ending up with the view like below :
Image

Image
This is great!!! I have all my music tagged using picard and tag&remname...
am I to understand that you have created Nfo's as well? if so what program did you use for the NFO's and is it one per album or one for song??

What I do is import new music into Kodi, after putting relevant artwork into artist and album folders and tagging via MusicBrainz Picard, then I go into Music settings area/ Library and the export my music library. Kodi will then create a artist.nfo file and a album.nfo for each album under the artist directory.

Once thats done I then check to see whats been missed in the Kodi scrap import. I then edit each nfo for artist and album to fill in the missing details

Thanks


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - zorg2000k - 2016-03-05

(2016-03-05, 18:12)zorg2000k Wrote:
(2016-03-05, 11:48)P_Jamula Wrote:
(2015-12-10, 00:01)zorg2000k Wrote: Evening all,

Just wanted to see if anyone else is as OCD with metadata details for Music in Kodi with Madnox installed.

I've just finished tagging my whole library, which has taken 3 months off and on....

Small tip for anyone using Madnox and Showcase2 view. For correct Album tagging I made sure the following was completed for each album :

Tools used MusicBrainz Picard, TagRename, along with The AudioDB.com and Fanart.tv websites

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<album>
    <title></title>
    <musicBrainzAlbumID></musicBrainzAlbumID>
    <artist></artist>
    <genre></genre>
    <style></style>
    <mood></mood>
    <releasetype></releasetype>
    <compilation></compilation>
    <review></review>
    <type></type>
    <releasedate></releasedate>
    <label></label>
    <thumb</thumb>
    <path></path>
    <rating></rating>
    <year>2009</year>
    <albumArtistCredits>
        <artist></artist>
        <musicBrainzArtistID></musicBrainzArtistID>
        <joinphrase></joinphrase>
        <featuring></featuring>
    </albumArtistCredits>
    <track>
        <musicBrainzTrackID></musicBrainzTrackID>
        <title></title>
        <position></position>
        <duration></duration>
    </track>
</album>

And for all Artists the following :
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<artist>
    <name></name>
    <musicBrainzArtistID></musicBrainzArtistID>
    <genre></genre>
    <style></style>
    <mood></mood>
    <yearsactive></yearsactive>
    <born></born>
    <formed></formed>
    <biography></biography>
    <died></died>
    <disbanded></disbanded>
    <thumb</thumb>
    <album>
        <title></title>
        <year></year>
    </album>
</artist>

Ending up with the view like below :
Image

Image
This is great!!! I have all my music tagged using picard and tag&remname...
am I to understand that you have created Nfo's as well? if so what program did you use for the NFO's and is it one per album or one for song??

What I do is import new music into Kodi, after putting relevant artwork into artist and album folders and tagging via MusicBrainz Picard, then I go into Music settings area/ Library and the export my music library using "separate" / export thumbs and fanart "Yes" / overwrite old files "NO" . Kodi will then create a artist.nfo file and a album.nfo for each album under the artist directory.

Once thats done I then check to see whats been missed in the Kodi scrap import. I then edit each nfo for artist and album to fill in the missing details

Thanks



RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - mattyspurs76 - 2016-03-05

Spent all day setting up kodi again using this skin. This finally finished and I've just opened up the settings for and Addon and I can't see the text. Looks like a backgrounds missing have I done something to the skin or am I missing something? http://i.imgur.com/00xIKC1.jpg


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - mattyspurs76 - 2016-03-05

So, I change skin to confluence then back to aeon madnox and everything is OK but a few minutes later it happened again, can't read shit. Background behind text has gone and I don't know why.


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Lockos - 2016-03-05

(2016-03-05, 18:56)mattyspurs76 Wrote: So, I change skin to confluence then back to aeon madnox and everything is OK but a few minutes later it happened again, can't read shit. Background behind text has gone and I don't know why.

There is currently a texture problem. The team is working on it. Use the reload button after selecting a movie with context menu (press c on keyboard). It should fix the problem on a temporary basis.


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - sanity - 2016-03-06

Just installed latest madnox. Great work guys!

I seem to have an issue with my widgets though. I use "latest movies" "latest episdodes" and latest added albums" as widgets. None of those toggles between the latest added movies, ep or albums. The widget always displays the same movie, ep or album. With the old madnox skin it always changed every 5 or 10 second.


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - zorg2000k - 2016-03-06

All, I've created a post which may be useful for folk wanting to have their Music in Kodi and Aeon Madnox imported with all the data fields.

Hope this helps a few people. Created a new thread as I don't want to clog this thread up with questions and lots of screenshots...

Adding Music to Kodi (Jarvis) and Aeon Madnox (RC1) - Guide


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - P_Jamula - 2016-03-06

(2016-03-05, 18:12)zorg2000k Wrote: [
What I do is import new music into Kodi, after putting relevant artwork into artist and album folders and tagging via MusicBrainz Picard, then I go into Music settings area/ Library and the export my music library. Kodi will then create a artist.nfo file and a album.nfo for each album under the artist directory.

Once thats done I then check to see whats been missed in the Kodi scrap import. I then edit each nfo for artist and album to fill in the missing details

Thanks
Thanks for the response...
1 What is your folder structure
2 What program do you use for adding the artwork??


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - P_Jamula - 2016-03-06

(2016-03-06, 10:07)zorg2000k Wrote: All, I've created a post which may be useful for folk wanting to have their Music in Kodi and Aeon Madnox imported with all the data fields.

Hope this helps a few people. Created a new thread as I don't want to clog this thread up with questions and lots of screenshots...

Adding Music to Kodi (Jarvis) and Aeon Madnox (RC1) - Guide

WOW..... Thanks a lot.... reviewed the post and it's the best detailed info seen here for a while....
that will be a great help to achieve the ultimate...

Thanks again......


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - P_Jamula - 2016-03-06

(2016-03-06, 10:07)zorg2000k Wrote: All, I've created a post which may be useful for folk wanting to have their Music in Kodi and Aeon Madnox imported with all the data fields.

Hope this helps a few people. Created a new thread as I don't want to clog this thread up with questions and lots of screenshots...

Adding Music to Kodi (Jarvis) and Aeon Madnox (RC1) - Guide

Wish there was such an elaborate method of importing Music Videos into Kodi....


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Ruschi - 2016-03-06

So geil was ihr da macht.. Great work guys.


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - neurosis13 - 2016-03-06

new Studio Logo for the new Quentin Tarantino Movie:


http://www.mediafire.com/view/3b97tc07pyz779u/Double_Feature_Films.png


RE: Aeon Madnox [RC1] for Jarvis *** Important Please read first post (27/02)*** - Slipass - 2016-03-06

(2016-02-28, 22:01)BobCratchett Wrote:
(2016-02-28, 21:53)Slipass Wrote: But where can I configure the playcount in the playlist? I dont have the option, when i create a new playlist.
Can you post me the code then i can add it manuel in the playlist.

Have a look at http://kodi.wiki/view/Smart_playlists#Random_unplayed_episodes_from_a_TV_show for an example of how to use playcount if you're manually editing a smart playlist. If creating through the Kodi gui, add a new rule and cycle until it says "Match items where" "(Play count)".

Thanks Bob, it works good.
But how i can tell the Live Background to show only the last added movies? Is it also over the smart playlist possible?