|
SageMC Custom Interface This forum is for discussing the user-created SageMC custom interface for SageTV. |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
Any way to make to video tabs
This may be out of the realm but is there anyway to make 2 video tabs on the screen and have them each point to different import folders?
This would allow me to keep my blu ray's seperate from my dvd's. I know I change change the sort but wife doesn't like that very much eidt heading should say two no to Last edited by PLUCKYHD; 03-05-2009 at 09:43 AM. |
#2
|
|||
|
|||
Are you using nielm's "dynamic custom menus" plug-in? Why not just create two menu items, "DVDs" and "Blu-Ray Movies", and link each directly to the respective folder view?
__________________
Server: AMD Athlon II x4 635 2.9GHz, 8 Gb RAM, Win 10 x64, Java 8, Gigabit network Drives: Several TB of internal SATA and external USB drives, no NAS or RAID or such... Software: SageTV v9x64, stock STV with ADM. Tuners: 4 tuners via (2) HDHomeruns (100% OTA, DIY antennas in the attic). Clients: Several HD300s, HD200s, even an old HD100, all on wired LAN. Latest firmware for each. |
#3
|
|||
|
|||
No I am not using this but will look into it tonight thanks for the advice.
|
#4
|
|||
|
|||
Okay that only works with default stv? Should have mentioned I use sagemc.
* moved; please post in the SageMC forum for SageMC issues * |
#5
|
||||
|
||||
Dynamics menu is built into SageMC.
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. |
#6
|
|||
|
|||
GAry I use them but can't figure out how to add another videos mene without it pointing to the same import folder as the others. Any help is greatly appreciated.
|
#7
|
|||
|
|||
See the below code from the first part of my sagemc_menu.xml. I highlighted the part that you need to change for your setup. The title is what is displayed on screen and the path is the path to the appropriate folder (DVD, BLUray, etc).
Note: Yes you need \\ (2 backslashes) for every \ in the normal windows path. Code:
<sageMenu version="1.4"> <menu title="Main"> <internalScreenMenuItem icon="hover_my tv.png" screen="My TV" title="TV"> <evalExpression> </evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="Videos"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\svr1\\video")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="hover_my videos.png" screen="Video Library Folder View" title="DVDs"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\svr1\\dvd")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem>
__________________
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 |
#8
|
|||
|
|||
Thanks allot will try this tonight I really appreciate the help.
|
#9
|
|||
|
|||
Okay upond trying this is add's the new item on the menu but still points to the same video library directory my other own does even after specifing sepearte paths?
|
#10
|
|||
|
|||
When I initially set mine up too it took alot of tries too. I eventually found a syntax error in my xml file. So I would double and triple check that you have all your syntax correct. If you upload your xml file I will take a look at it if you want.
__________________
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 |
#11
|
|||
|
|||
Could you explain the syntax needed for a local drive would it be
\\d:\\shares\\dvd movies or do i have to prefix it \\\whs\\shares\dvd movies |
#12
|
|||
|
|||
Another question do you still have all the video directories mapped in the sagetv setup as well? or none for videos?
|
#13
|
|||
|
|||
to refer to a local disk i believe the syntax would be:
d:\\shares\\dvd movies (no slashies before d: ) There is no reason to not use UNC paths though (especially if you have more than 1 client). if "shares" is your folder that is shared, and "whs" is your computer name then ya the syntax would be \\\\whs\\shares\dvd movies (make sure 4 slashies in the front)
__________________
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 |
#14
|
|||
|
|||
Quote:
__________________
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 |
#15
|
|||
|
|||
Okay I got the dvd movies one to work but the other two are still showing the entire video library
<!-- --> <internalScreenMenuItem icon="C:\Program Files\SageTV\SageTV\STVs\SageTV3\SageMCE\Themes\CenterSage\MenuIcons\hover_dvd.png" screen="Video Library Folder View" title="DVD Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\BANTAWHS\\DVD MOVIES")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="C:\Program Files\SageTV\SageTV\STVs\SageTV3\SageMCE\Themes\iTV\MenuIcons\hover_my videos.png" screen="Video Library" title="Home Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\BANTAWHS\\Videos")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- --> <internalScreenMenuItem icon="C:\Program Files\SageTV\SageTV\STVs\SageTV3\SageMCE\Themes\BlueTwo\MenuIcons\hover_my videos.png" screen="Video Library" title="Blu Ray Movies"> <evalExpression>AddStaticContext("PathFilterExprs", new_java_util_ArrayList())</evalExpression> <evalExpression>java_util_List_add(PathFilterExprs, "\\\\BANTAWHS\\BLU RAY MOVIES")</evalExpression> <evalExpression>AddStaticContext("PathFilterExcludes", false)</evalExpression> </internalScreenMenuItem> <!-- |
#16
|
|||
|
|||
man... that's a tough one. The syntax looks right to me.. I am in no way a java developer but it looks like the same syntax as mine... except:
In your second and third entries you refer to a different screen than the first entry. I would refer to the same screen as the first one.... Code:
screen="Video Library Folder View" title="Home Movies">
To confirm that the filtering is working I would copy your first entry (the working DVD one) and then just change only the paths and title. After you get the filtering working then I would start customizing...
__________________
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 |
#17
|
|||
|
|||
I didn't even notice the view was missing I will try that tonight.
|
#18
|
|||
|
|||
That did the trick changing them to video library view from just video library.
|
#19
|
|||
|
|||
excellent
__________________
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 |
#20
|
||||
|
||||
I have tried this meathod and I am unable to get it to work. Any help would be appreciated.
__________________
SageTV Server: unRAID Docker v9, S2600CPJ, Norco 24 hot swap bay case, 2x Xeon 2670, 64 GB DDR3, 3x Colossus for DirecTV, HDHR for OTA Living room: nVidia Shield TV, Sage Mini Client, 65" Panasonic VT60 Bedroom: Xiomi Mi Box, Sage Mini Client, 42" Panasonic PZ800u Theater: nVidia Shield TV, mini client, Plex for movies, 120" screen. Mitsubishi HC4000. Denon X4300H. 7.4.4 speaker setup. |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to make Sagetv treat 2 sources as 1 source - Firewire and S-Video? | stewart710 | Hardware Support | 14 | 01-14-2007 12:12 AM |
do they make a... | xlr8shun | General Discussion | 3 | 04-08-2006 09:50 AM |
Can I make the small preview video bigger? | area123 | SageTV Customizations | 12 | 03-31-2006 08:55 PM |
HOw to make video in work | arix | SageTV Recorder Software | 0 | 08-27-2003 11:13 AM |
Make my own video pre-sets | thayne | SageTV Recorder Software | 10 | 07-05-2003 09:50 AM |