Kodi Community Forum
[RELEASE] Aeon Nox 2.0 (deprecated) - 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: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: [RELEASE] Aeon Nox 2.0 (deprecated) (/showthread.php?tid=89151)



- Eddage - 2011-08-03

Is there a way to stop this skin from updating automatically?

I've made tweaks to some of the mediaflags and a couple of the views but every so often (about a minute ago) it decides to update itself and so overwrite everything I've done!


- Shinu - 2011-08-03

LiLChris Wrote:Tried it, had a feeling it wouldn't work. Sad

Tv Show trailers aren't supported in XBMC. I already asked elsewhere in the forum. Doubt it ever will be supported.


- fional - 2011-08-03

Eddage Wrote:Is there a way to stop this skin from updating automatically?

I've made tweaks to some of the mediaflags and a couple of the views but every so often (about a minute ago) it decides to update itself and so overwrite everything I've done!

I believe there's a setting under systems to turn off auto-updates for add-ons (skins included), I'm pretty sure I've seen it, but I'm not at home so I can't specifically check.

What I do is I just keep a text file of my changes and then just replace them after an update. I've been meaning to write a script that would assist me, but haven't got around to that yet.


- fional - 2011-08-03

Machine-Sanctum Wrote:I myself use tagscanner. You drag some files into track list and hit export tracklist.
Had to do some thinkering to get it just the way i want it but it works.
You can do the same i think with many other programs like media monkey.
It's sort of a playlist but you store it as .nfo (as text or XML layout) and xbmc can work with that. As long as you stck to the rules of nfo files for xbmc.
Downside it you have to do this one album at a time or create one very large one.
I'll give that a try soon

I'm going to get tagscanner today, because I'm almost 100% sorting through my library. What sort of tinkering did you do to get it XBMC/Nox compatible?


- Rodimus - 2011-08-03

Maybe I'm being thick but I just went looking for the cinema experience option and it's there but I cannot change it from off. I press down and it just skips over it.

I went to the repository to check I had the right version and it tells me the one on there is 1312318616. The first page here says it's 1.5 which is the one I had.

Colour me confused.

Either way the old one (i'm assuming the string of digits was an old one) doesn't bring up anything when you select video/music etc. Just a Black screen, and 1.5 works for everything else.

I jsut cannot get the cinema experience to turn on!

EDIT you can ignore this. I wiped it out, started again and it's fine. Great skin btw! My favourite so far by a mile.


- Martijn - 2011-08-03

fional Wrote:I'm going to get tagscanner today, because I'm almost 100% sorting through my library. What sort of tinkering did you do to get it XBMC/Nox compatible?

When you select "list maker" there are some templates. Choose edit XML template en copy in this code:
Code:
# Tagscanner export script

$file_name %albumartist% - %album%.xml
$file_notes XML file with full information
$file_encoding utf-8
$file_writebom 0
$file_ishtml 1

$document_open
<?xml version="1.0" encoding="utf-8"?>
<filelist>
    <root>%workpath%</root>
    <totalfiles>%_totalfiles%</totalfiles>
    <totalsize>%_totalsize%</totalsize>
    <totallength>%_totallength%</totallength>
    <date>%_now%</date>
    <generator>%_version%</generator>
$select %albumartist%,0
    <artist>
        <name>%albumartist%</name>
        <files>%_totalfiles%</files>
        <size>%_totalsize%</size>
        <length>%_totallength%</length>
$select %year%-%album%,0
        <album>
            <title>%album%</title>
            <files>%_totalfiles%</files>
            <size>%_totalsize%</size>
            <length>%_totallength%</length>
            <genre>%genre%</genre>
            <year>%year%</year>
            <path>%filepath%</path>
            <thumb>folder.jpg</thumb>
$select %fullfilenameext%,0
            <track>
                <tracknumber>%track%</tracknumber>
                <title>%title%</title>
                <comment>%comment%</comment>
                <length>%_length%</length>
                <codec>%_codec%</codec>
                <bitrate>%_bitrate%</bitrate>
                <mode>%_channels%</mode>
                <samplerate>%_samplerate%</samplerate>
                <tags>%_tagtype%</tags>
                <filename>%fullfilenameext%</filename>
                <filedate>%_filedate%</filedate>
                <size>%_filesize%</size>
            </track>
$endselect
        </album>
$endselect
    </artist>
$endselect
</filelist>
$document_close
The changes i made that it automaticly creates the NFO with the correct extension and in the correct folder. You can make some changes yourself as you see fit.
Just check what XML layout xbmc is expecting and what it supports.
In helpfile of tagscanner search for placeholder. There you will find the appropiate tagging


- fional - 2011-08-03

Machine-Sanctum Wrote:When you select "list maker" there are some templates. Choose edit XML template en copy in this code:
Code:
# Tagscanner export script

$file_name %albumartist% - %album%.xml
$file_notes XML file with full information
$file_encoding utf-8
$file_writebom 0
$file_ishtml 1

$document_open
<?xml version="1.0" encoding="utf-8"?>
<filelist>
    <root>%workpath%</root>
    <totalfiles>%_totalfiles%</totalfiles>
    <totalsize>%_totalsize%</totalsize>
    <totallength>%_totallength%</totallength>
    <date>%_now%</date>
    <generator>%_version%</generator>
$select %albumartist%,0
    <artist>
        <name>%albumartist%</name>
        <files>%_totalfiles%</files>
        <size>%_totalsize%</size>
        <length>%_totallength%</length>
$select %year%-%album%,0
        <album>
            <title>%album%</title>
            <files>%_totalfiles%</files>
            <size>%_totalsize%</size>
            <length>%_totallength%</length>
            <genre>%genre%</genre>
            <year>%year%</year>
            <path>%filepath%</path>
            <thumb>folder.jpg</thumb>
$select %fullfilenameext%,0
            <track>
                <tracknumber>%track%</tracknumber>
                <title>%title%</title>
                <comment>%comment%</comment>
                <length>%_length%</length>
                <codec>%_codec%</codec>
                <bitrate>%_bitrate%</bitrate>
                <mode>%_channels%</mode>
                <samplerate>%_samplerate%</samplerate>
                <tags>%_tagtype%</tags>
                <filename>%fullfilenameext%</filename>
                <filedate>%_filedate%</filedate>
                <size>%_filesize%</size>
            </track>
$endselect
        </album>
$endselect
    </artist>
$endselect
</filelist>
$document_close
The changes i made that it automaticly creates the NFO with the correct extension and in the correct folder. You can make some changes yourself as you see fit.
Just check what XML layout xbmc is expecting and what it supports.
In helpfile of tagscanner search for placeholder. There you will find the appropiate tagging

Ok, many thanks! I'm going to play with it some over the weekend and see how i get on.


- Martijn - 2011-08-03

fional Wrote:Ok, many thanks! I'm going to play with it some over the weekend and see how i get on.

I saw some mistake.
Code:
$file_name %albumartist% - %album%.xml
must be
Code:
$file_name %workpath%album.nfo
or
$file_name %filepath%album.nfo
The first one usually works. You only need to move the file to the album folder.
And turn on the option "use relative paths"
You can put all info in the MP3 tag or edit the nfo file manually to add all you want.
After that importing into xbmc will be a breeze.


In the same way you can create some custom Artist information.
http://wiki.xbmc.org/?title=Import_-_Export_Library
See this section about how-to


Edit:
You need to do this one album at a time. I tried to do a whole collection at once but that didn't work.
Also make a copy of the export config because everytime you close tagscanner it reset's the export config


- meridius - 2011-08-03

meridius Wrote:Hi there, love the skin but could u add one option that I would love.

I like to have marked watched on tv shows but it also does this on movies which I do not want, could you add an option to have watched selected just for tv shows and turned off for movies as at the moment you can only have it on or off for all

Thanks

Anyone


- PantsOnFire - 2011-08-04

I have to say, looking through even the last 10 pages of this thread, Im impressed how much the author responds and delivers what people are looking for, it would be so easy to just say 'I'll let the xbmc guys do it'.. kudos man, kudos.


- meridius - 2011-08-04

can there be an option added to carousel to disable wrap ? thanks

Also How do u disable auto skin updates

Cheers


- LiLChris - 2011-08-04

Shinu Wrote:Tv Show trailers aren't supported in XBMC. I already asked elsewhere in the forum. Doubt it ever will be supported.

I hope it will be supported, it seems silly not to.
In my case I have tons of Anime and it would be great if I can show them the trailer without having to go to the YouTube plugin.


meridius Wrote:can there be an option added to carousel to disable wrap ? thanks

I feel like that would kill the point of it being a Carousel since it doesn't go around forever. :p


- Martijn - 2011-08-04

meridius Wrote:Also How do u disable auto skin updates
Cheers

http://wiki.xbmc.org/index.php?title=Add-on_Manager
See following link for disabling auto update


- Martijn - 2011-08-04

LiLChris Wrote:I hope it will be supported, it seems silly not to.
In my case I have tons of Anime and it would be great if I can show them the trailer without having to go to the YouTube plugin.

Post your question in the xbmc feature suggestion forum and see how they reply


- thezoggy - 2011-08-04

In the weather section on the home screen i clicked on animated and it kills the current icons... now all i have is empty spots where the images should be.
I tried d/ling the animated weather icons from the first post but the link doesn't seem to work. The weather image pack works fine. I tried playing with all kinds of settings in the skin but I could not revert the weather icons back to default. Bug?