User(s) browsing this thread: 2 Guest(s)
|
Oversight Jukebox r571-stable
|
|
02-23-2009, 08:55 PM
(This post was last modified: 11-29-2009 02:16 PM by lordy.)
|
|||
|
|||
|
Oversight Jukebox r571-stable
All,
The latest BETA of Oversight is available from CSI or NMT Installer Version r571-stable This version (r571-stable) should have - tv box set view (note changing titles do not appear in Gaya) - most fixes for recent changes to scanning After the recent spate of bugfix releases I'm mindful that people may have been put off with downloading and installing buggy versions. Even if the bugs didnt affect them, they see constant alerts in CSI. So from now on there will be two types of releases: -stable: Stable releases will have the "-stable" suffix in the version. They will either be: - releases that have come through a beta cycle OR - have emergency fixes to serious bugs (bugs that affect most people most of the time) -testing: Beta releases will have the "-testing" suffix in the version. New functionality will be proven here before it appears in a stable version. Beta releases will be available via the project download page, and possibly the CSI as a separate download to -stable.
Oversights main strengths are :
Main weakness at the moment is looks, but this will improve over time. I may even add reflection one day just for fun It is the low maintenance and configuration overhead that really sets Oversight apart from other Jukeboxes. ![]() . ![]() . ![]() For more info see http://code.google.com/p/oversight/ The Oversight Roadmap is: 1) Better Search 2) Transmission Support 3) Functional GUI changes - eg various dropdown filters GUI NFO editing + rescan 4) TV Box Set Support 5) Nip&Tuck - Skin Facelift. 6) Other languages. Any well defined repeatable issues are now best raised as issues with attachments. http://code.google.com/p/oversight/issues/list Oversight: Jukebox | FeedTime: Automatic nzbs |
|||
12 users say Thank You to lordy for this post |
|
02-23-2009, 09:08 PM
|
|||
|
|||
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
great really looking forward on that
----------------------------------------------------------------------------------------------------- Syabas Technology Inc. DBA Popcornhour |
|||
|
02-23-2009, 09:49 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Does the GUI config give the ability to change the initial scan location. I don't want it to scan the entire drive as I use Oversight more as a DVR, and I use YAMJ for my static movie collection.
Can I change the default scan location to be "Share/Download"? Thanks, Azuravian |
|||
|
02-23-2009, 09:58 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Very nice...
Ydrol is definitely a man of the people
|
|||
|
02-23-2009, 10:13 PM
(This post was last modified: 02-23-2009 10:15 PM by lordy.)
|
|||
|
|||
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
(02-23-2009 09:49 PM)azuravian Wrote: Does the GUI config give the ability to change the initial scan location. I don't want it to scan the entire drive as I use Oversight more as a DVR, and I use YAMJ for my static movie collection. Yup ... Here are the current catalog.sh settings : (description text will change slightly)
Oversight: Jukebox | FeedTime: Automatic nzbs |
|||
1 user says Thank You to lordy for this post |
|
02-25-2009, 03:44 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
This looks really wonderful compared to the old gui, it was confusing me.
But I would like to know if the following is possible. I download tv-shows in the /downloads folder and store my movies/shows as follow * /video/movies/ terminator aliens * /video/tv-shows/ lost heroes csi Is it possible when i download lost for example through tvnzb and goes into the download folder that this script will automacily unpack it and also moves it into the lost folder? If possible can i change that in the GUI or do I have to edit the files manually cheers |
|||
|
02-25-2009, 04:11 PM
(This post was last modified: 02-25-2009 04:12 PM by lordy.)
|
|||
|
|||
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
(02-25-2009 03:44 PM)RavenNL Wrote: This looks really wonderful compared to the old gui, it was confusing me. It all happens automatically. At present you have to edit unpak_tv_file_format and unpak_film_folder_format in unpak.cfg In the next version (this weekend hopefully) these keywords have moved to catalog.cfg, and all config files can be managed via the gui settings. (If you look closely at the settings screen shot above you can see them waiting for you )
Oversight: Jukebox | FeedTime: Automatic nzbs |
|||
|
02-25-2009, 04:35 PM
|
|||
|
|||
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
(02-25-2009 04:11 PM)lordy Wrote: It all happens automatically. sweet Those are the options that I was looking for, can't wait to test it
|
|||
|
03-01-2009, 12:42 PM
|
|||
|
|||
| RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview... | |||
|
03-01-2009, 03:20 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Ha, its a long story , and probably of interest to nobody, but I wrote most of the scripts in awk. I just found out an assumption I made about awk, and which lead me to write lots of horrible code to cope with 'awks' "limitiations",
was completely wrong. So I've spent the last three days re-writing the scripts to be cleaner and more efficient. So it looks like next weekend now, since I have to give them some more testing ![]() The gory details for anyone interested: I thought awk only let you read one file at a time, so to write the catalog script scanner, I wrote lots of very yucky code so that each nfo file scanned, or each wget/internet scrape, was dynamically added to awks list of files (argv). and then processed by the appriate awk rule , as awk worked through its list. For example scanning an nfo, might find an imdb link, so then I scrapped IMDB and added the html text file to awks argument list. Another common awkism, to do stuff at the end of a file, you had to detect the start of the next file instead (FNR==1), and that only worked if there was another file pending, it was just really kudgy code to get it all working. I was even thinking about blogging about when not to use awk. ![]() Then literally two days ago, I found out that this restriction isn't in awk, it was a figment of my imagination. To be honest most awk tutorials advise you are using awk wrongly if you are using 'getline' too much, and not using the pattern match rules, thats why I didnt think about the possibility of using getline to read a file which did not exists at the time awk was started. Anyway it turns out, one website gave me that little nugget of information, that you can write an awk script that just fires off the 'BEGIN' an 'END' directives and doesn't have any those match rules in the middle. When done like this its just like using any other scripting language (perl,php etc) and you dont have to bother with all the automatic rule matching stuff. And can read/write files in any order you want. So a big re-write, code is now faster and clearer with fewer bugs, but needs re-testing ...
Oversight: Jukebox | FeedTime: Automatic nzbs |
|||
|
03-01-2009, 06:09 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Looks nice cant wait to try it!
|
|||
|
03-12-2009, 02:28 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
any updates on when we can get our hands on this?
|
|||
|
03-12-2009, 02:47 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Hi,
Im still working on some core features, so taking a bit longer than expected: The main things before putting up a stable beta are: VIDEO_TS catalog/playback. Auto Updates. Navigation - some improvements required esp when selecting files for deletion from the main page. I'll put up a new beta for you to try this weekend. Any feedback welcome! Oversight: Jukebox | FeedTime: Automatic nzbs |
|||
1 user says Thank You to lordy for this post |
|
03-19-2009, 10:44 AM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Looking forward to try it,
much luck scripting it My PCH-A110 Stats | Samsung LE32A656 | Logitech Z-2300 | Harmony One Oversight | |
|||
|
03-23-2009, 05:03 PM
|
|||
|
|||
|
RE: OVERSIGHT no-faffing about "Jukebox" V2: Sneak Preview...
Hi when is this going to be avaliable to test? havent got a jukebox at the moment and this one looks like what im looking for.
thanks |
|||
|
« Next Oldest | Next Newest »
|

Twitter
Facebook
NMT Wiki
Search
Member List
Help
A-400 [13 May 2013]



It is the low maintenance and configuration overhead that really sets Oversight apart from other Jukeboxes. ![[Image: ovs-fanart.png]](http://oversight.googlecode.com/svn/trunk/screenshots/ovs-fanart.png)
![[Image: ovs2-tv.png]](http://oversight.googlecode.com/svn/trunk/screenshots/ovs2-tv.png)
![[Image: ovs2-page1.png]](http://oversight.googlecode.com/svn/trunk/screenshots/ovs2-page1.png)



![[+]](images/collapse_collapsed.gif)



)
