|
SageMC Custom Interface This forum is for discussing the user-created SageMC custom interface for SageTV. |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
Question about SMW
I got a couple quick questions regarding SMW. My setup is like this:
G:\Media\Movies\MovieTitle\MovieTitle.ext G:\Media\TV Shows\Show\Season\Episode.ext At what point does SMW kick in? Right after you select My Videos? If that is the case, is it going to add my TV shows, and everything that is not a movie to the movie wall? Also, if that is how it works, can I make a seperate Main Menu item called My Movies, that goes directly into the Movies directory. Thanks, Tony |
#2
|
|||
|
|||
So I installed it, but all my TV Shows and everything else is showing up on the wall. Any way to only have it work for the G:\Media\Movies directory?
Thanks, Tony |
#3
|
||||
|
||||
There are a few different ways to handle this..
1-Use the web server to import your tv shows into recorded tv 2-Use BMI or manually write .properties files that set the "MediaType=tv" - then set SMW to movie and use TV Explorer for TV media 3-Set a filter to only show the dir you want - plucky should be able to help with this, as it sounds like this is what your after I personally use the web server to import the videos into recorded tv.. This is time consuming (took me a couple weeks to go thru 2000+ videos), but t gives you a chance to verify the correct metadata |
#4
|
|||
|
|||
Well, I've made some progress. I wrote a custom menu XML file so I have menu items that point to each folder. It works well, but the only problem so far, is that Sage Movie Wall is displayed when I go through the directories for all of them, but they are separated correctly. How can I disable that for only certain folders? I installed the Jetty web server. Under the Phoenix section, it says that the version is 1.36, even though I downloaded the latest one. It says the same thing in Sage. Other things that aren't working; The star rating doesn't seem to be working for most of the movies, and the rating on 90% of them just says NRA. Should I do a complete Metadata fetch on the whole directory? The last time I did that it grabbed a lot of wrong information. It took me like 2 weeks to go through 1400+ movies and make sure all the metadata was correct because it changed the titles, which made the fan art not work.
Here is the menu file: Code:
<?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE sageMenu PUBLIC "-//NIELM//DTD SAGEMENU XML 1.4//EN" "http://sageplugins.sourceforge.net/nielm_modules/dynamic_menu/sagemenu_1_3.dtd"> <sageMenu version="1.4"> <menu title="Main"> <internalScreenMenuItem icon="hover_my tv.png" screen="My TV" title="My TV"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="My Videos"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my music.png" screen="My Music" title="My Music"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my pictures.png" screen="Picture Library" title="My Pictures"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_dvd.png" screen="Play DVD" title="Play DVD"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <subMenuItem icon="hover_my programs.png" title="My Menu"> <menu title="My Menu"> <internalScreenMenuItem screen="Default STV Menu" title="Online Services"> <evalExpression>AddStaticContext("TargetMenuName", "Online Services Menu")</evalExpression> <evalExpression>AddStaticContext("LeftListener", "Left-Back to parent menu")</evalExpression> <evalExpression>AddStaticContext("BackWidgetId", "BASE-51766")</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem screen="EMail" title="@email"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem screen="Rss News Feeds -- nielm" title="RSS Feeds"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem screen="Video Conversions" title="Video Conversions"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem screen="Parental Controls" title="Parental Controls"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem screen="Setup Menu" title="Settings"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> </menu> </subMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Sage Movie Wall" title="Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "G:\\Media\\Movies")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my tv.png" screen="Video Library Folder View" title="TV Shows"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "G:\\Media\\Shows")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="Documentaries"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "G:\\Media\\Documentaries")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="Concerts"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "G:\\Media\\Live Concerts")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="Stand Up Comedy"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "G:\\Media\\Stand Up Comedy")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> </menu> </sageMenu> Tony Last edited by tonysathre; 10-15-2009 at 01:21 AM. |
#5
|
|||
|
|||
First and foremost do not Import
it into recorded tv I highly recomend against this it is not necessary I'd you are using bmi it will mark it as tv and you can remove from smw with filters I would do pathfilter expressions in your case and only include your movies folder and use tve for tv. You don't have to do a complete rescan you can edit and scan the ones that are wrong in the bmi webui. Also make sure your source selection is imdb-themoviedb if the moviedb is your primary bmi can't get rated from it. |
#6
|
||||
|
||||
I curious as to why you would recommend not to do this?
|
#7
|
|||
|
|||
I don't like my ripped/archive tv showing up in the recordedtv section and there really is no need with tve and smw and bmi it does not have to be imported
|
#8
|
|||
|
|||
Quote:
Quote:
I have movies in one network share from a NAS, and TV shows from a different share on the same NAS. For sage's import directories, these are listed as seperate import locations. ie. \\NAS\Movies\ \\Nas\TV\ BTW, SMW is f***ing awesome. Thanks plucky!
__________________
--}Q6600, 4GB Ram, 1TB HD (Raid 0, 64k NTFS), Geforce 7900GS, --}HD-PVR, PVR150, all latest drivers. --}SageTV 6.6, SageMC 6.3.9b |
#9
|
|||
|
|||
Quote:
you can also use pathfilterexpressions for the menu item of SMW or TVE and just include the directories you want there the pathfilterexpressions would be a more 100% accurate way of doing it. Here is a good post I had when learning myself how to do pathfilters http://forums.sagetv.com/forums/show...ght=video+tabs |
#10
|
|||
|
|||
Quote:
Code:
<internalScreenMenuItem screen="Sage Movie Wall" title="SMW"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\mr_movie\\media\\Movies")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> Edit. Nevermind! It didn't work until I changed the "title" to something other than SMW (which had been configured previously without the regex). After changing that it works fine! Thanks again!
__________________
--}Q6600, 4GB Ram, 1TB HD (Raid 0, 64k NTFS), Geforce 7900GS, --}HD-PVR, PVR150, all latest drivers. --}SageTV 6.6, SageMC 6.3.9b Last edited by mrdrbdt; 11-24-2009 at 03:51 PM. |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
STV Import: Sage Movie Wall (SMW) | PLUCKYHD | SageMC Custom Interface | 1266 | 07-01-2011 07:00 AM |
BMI, SMW and custom menu items issue | kkapp | SageMC Custom Interface | 3 | 10-02-2009 07:57 AM |
Picture quality question, also question on delays | andrew1810 | SageTV Software | 5 | 03-08-2006 04:51 PM |