|
Batch Metadata Tools This forums is for discussing the user-created Batch Metadata Tools for SageTV. |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
VFS - add one for Movies
How can I go about adding a VFS entry that will show only Movies (similar to the Movies grouping that Diamond uses)?
BMT has one that shows my TV entries and another that shows ALL videos but that includes TV and Movies... just looking for one that would show Movies only? Thanks k |
#2
|
|||
|
|||
For refernce to this question diamond does it 2 ways.
By mediatype=movie or by mediatype!=tv I don't know how make make a view in bmt never done it but hopefully above will help Simone help you |
#3
|
||||
|
||||
This is off the top of my head (I'm at work), so it may not work... but here's the general configuaration...
Drop this file in the userdata/Phoenix/vfs/ directory (name doesn't matter) Code:
<!DOCTYPE vfs SYSTEM "vfs.dtd"> <vfs> <views> <view name="jusjoken_movies" label="My Movies"> <tag value="video" /> <!-- Grab all video files --> <source name="mediafiles"> <option name="mediamask" value="VL"/> </source> <!-- pull in recorded movies for this view as well --> <view-source name="recordedmovies"/> <!-- globally filter out TV files --> <filter by="mediatype" scope="exclude" value="TV"> <!-- present then sorted by title --> <presentation level="1"> <sort by="title"/> </presentation> </view> </views> </vfs> Check the phoenix.log to see if you have an errors... you should see statement that your view is being loaded. We will hopefully have some better documentation on the phoenix views (ie vfs) sometime soon.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#4
|
|||
|
|||
Interesting. Never thought about custom VFS views in BMT. What about all Movies that are missing metadata?
I have a lot of TV shows that cannot be scraped and are clogging my missing metadata view.
__________________
Sage Server: i5-2500K 8 GB DDR, 6000gb HDD, 4xHD-PVR < 4xBell 6141, Win7 x64 Client 1: HD-200, Panasonic 42PX75 Client 2: HD-300, Samsung LCD Client 3: HD-300, Samsung PN50C550 Client 4: MS Surface Pro |
#5
|
||||
|
||||
Quote:
Here's the current missing metadata view... Code:
<view name="missingmetadataview" label="Missing Metadata"> <description>Shows videos that are missing Metadata and/or Fanart information</description> <tag value="metadata"/> <view-source name="videos"/> <view-source name="recordings"/> <view-source name="dvd"/> <view-source name="bluray"/> <view-source name="archivedrecordings"/> <filter by="missingmetadata"/> <presentation> <sort by="title"/> </presentation> </view> Code:
<view name="vividweb_missingmetadataview" label="Missing Metadata for Movies"> <description>Movies that are missing metadata</description> <tag value="metadata"/> <view-source name="jusjoken_movies"/> <filter by="missingmetadata"/> <presentation> <sort by="title"/> </presentation> </view> Again... We will have documentation on this once we get into a private beta... Stuff like the vfs has been used in bmt for quite a long time... but I haven't had the time to fully document how a user would go about creating their own custom views.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#6
|
|||
|
|||
Worked good. Wasn't sure what file to put it in so just edited the vfs.XML file. In the movie view had to close the filter tag </filter>.
__________________
Sage Server: i5-2500K 8 GB DDR, 6000gb HDD, 4xHD-PVR < 4xBell 6141, Win7 x64 Client 1: HD-200, Panasonic 42PX75 Client 2: HD-300, Samsung LCD Client 3: HD-300, Samsung PN50C550 Client 4: MS Surface Pro |
#7
|
|||
|
|||
Worked great! Thanks.
I created a new file in the "userdata/Phoenix/vfs/" folder. Here is the end result.. Code:
<!DOCTYPE vfs SYSTEM "vfs.dtd"> <vfs> <views> <view name="my_movies" label="My Movies"> <tag value="video" /> <!-- Grab all video files --> <source name="mediafiles"> <option name="mediamask" value="VL"/> </source> <!-- pull in recorded movies for this view as well --> <view-source name="recordedmovies"/> <!-- globally filter out TV files --> <filter by="mediatype" scope="exclude" value="TV"/> <!-- present then sorted by title --> <presentation level="1"> <sort by="title"/> </presentation> </view> <view name="my_movies_missingmetadataview" label="Missing Metadata for Movies"> <description>Movies that are missing metadata</description> <tag value="metadata"/> <view-source name="my_movies"/> <filter by="missingmetadata"/> <presentation> <sort by="title"/> </presentation> </view> </views> </vfs> k |
#8
|
||||
|
||||
Quote:
Glad both you guys got it workin Just so you know, if you decide to try Phoenix (once it's released) those view will automatically show up in Phoenix as well.
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient |
#9
|
||||
|
||||
Sneaky, ain't we.
__________________
"Everything doesn't exist. I'm thirsty." ...later... "No, it's real!!! I'm full." - Nikolaus (4yrs old) |
#10
|
|||
|
|||
Taunt me one more time....
Grant |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
VFS in Version 4.1.0 | toricred | Batch Metadata Tools | 8 | 10-02-2010 10:54 AM |
My Movies Add-In for WHS | kevine | General Discussion | 24 | 10-09-2009 11:33 AM |
How to add meta-data for home movies? | Shield | SageTV Software | 1 | 10-01-2007 11:56 AM |