|
SageMC Custom Interface This forum is for discussing the user-created SageMC custom interface for SageTV. |
|
Thread Tools | Search this Thread | Display Modes |
#101
|
|||
|
|||
Quote:
-Item one animations are interuptable meaning you don't have to wait for the animation to finish you can just keep scrolling - Item 2 this is fixed in the next build cheers |
#102
|
|||
|
|||
Quote:
Look for the one that has SageMovie wall you can edit the paths you want linked to it. see this thread for more explanation http://forums.sagetv.com/forums/showthread.php?t=40117 |
#103
|
|||
|
|||
I figured out why the BMT wasn't working automatically. I didn't have the best filenames on my movies. I am changing them to make them work better now.
Thanks Plucky ________ volcano vaporizer digital Last edited by Quazeye; 01-26-2011 at 12:27 AM. |
#104
|
|||
|
|||
Glad you figured it out even though scaling is in the next build
|
#105
|
||||
|
||||
Quote:
It only works if you keep your movies in a separate folder from your other media. So I have my movies in e:\video\movies My ripped TV shows in e:\video\TV and my other media in e:\video\other Also should share that I used to just have "e:\video" as an import folder, but now I need to import each of those folders individually "e:\video\movies", "e:\video\TV", "e:\video\other". So to make it all happen, you go into your sagetv directory and find "sagemc_menu.xml" and edit it with some entries that look like this: Code:
<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, "e:\\video\\movies")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my tv.png" screen="Video Library Folder View" title="TV"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "e:\\video\\tv")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="Other Videos"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "e:\\video\\other")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> |
#106
|
|||
|
|||
Yes that is write and you can repeat
<evalExpression>java_util_List_add(PathFilterExprs, "e:\\video\\movies")</evalExpression> For other folders under each other. |
#107
|
||||
|
||||
Quote:
<evalExpression>java_util_List_add(PathFilterExprs, "e:\\video\\movies")</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "f:\\dvds\\moremovies")</evalExpression> and it combine these two?
__________________
Server: Ubuntu 16.04 running Sage for Linux v9 |
#108
|
|||
|
|||
Quote:
Just remember they have to be paths set up in your video library paths as well |
#109
|
||||
|
||||
I’m trying to setup multiple walls… I can’t seem to get mine to work.
The steps I’ve taken: • Set up individual import directories E:\Video\Movies & E:\Video\Other. • Edited my sagemc_menu.xml: 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 screen="Sage Movie Wall" title="Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "e:\\video\\movies")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> </menu> </sageMenu> Any ideas as to what I’m doing wrong. TIA |
#110
|
|||
|
|||
Move the Sage movie wall up to the top where the others are out of the submenus I had that same issue until I moved them up.
|
#111
|
||||
|
||||
I tried that too with no success...
|
#112
|
|||
|
|||
I am pretty sure you also need a \ in front of the :
So your filter path would be Code:
e\:\\video\\movies
__________________
Server 2003 r2 32bit, SageTV9 (finally!) 2x Dual HDHR (OTA), 1x HD-PVR (Comcast), 1x HDHR-3CC via SageDCT (Comcast) 2x HD300, 1x SageClient (Win10 Test/Development) Check out TVExplorer |
#113
|
|||
|
|||
Quote:
|
#114
|
||||
|
||||
Still won't work right... Same results blank black screen. This is the code snippet that I'm trying to get to work. Any ideas?
Code:
<internalScreenMenuItem screen="Sage Movie Wall" title="Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "e\:\\video\\movies")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> |
#115
|
||||
|
||||
NOT TRUE - tried this when I was first experimenting. For whatever reason it doesn't work if you escape the colon only works if you don't. So NO BACKSLASH BEFORE THE COLON
|
#116
|
||||
|
||||
Have you had Sage re-scan your imported videos since you changed your import folders around?
|
#117
|
||||
|
||||
Also - make sure your movie files are directly located inside E:\Video\Movies, not in folders under that, but actual files in that folder.
|
#118
|
|||
|
|||
I find it better to use network share paths myself. but to each his own.
|
#119
|
||||
|
||||
Yeah, I had to experiment quite a bit with the syntax because every single filterpath example I could find used UNC paths. At least now we know drive letter paths work.
|
#120
|
|||
|
|||
Just for those wondering new build should be coming tomorrow.
The scaling has been tiresome and different but I have some options that make it good. My scaling options will be seperate from the default sagemc scaling options and will be set on first load of movie wall. |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
STV Import: Video Editing for Sage | BobPhoenix | SageTV Customizations | 279 | 03-07-2013 01:35 PM |
STV Import: MovieTimes Movie Listings Import v0.57 Beta | aperry | SageTV Customizations | 670 | 10-02-2010 12:07 AM |
STV Import: SageMC MovieTimes Movie Listings v0.64 | Morgan111 | SageMC Custom Interface | 419 | 10-01-2010 11:06 PM |
STV Import: Movie Info Screen V.1.0 | jaminben | SageMC Custom Interface | 398 | 01-17-2010 02:40 PM |
STV IMPORT: Exit Sage plugin (1.1 12/Jan/2006) | nielm | SageTV Customizations | 8 | 10-06-2006 07:11 AM |