[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread:
Post Reply 
Where can I specify what the source is for TV Shows?
01-19-2012, 02:06 AM
Post: #1
Where can I specify what the source is for TV Shows?
Most of my shows don't have a source listed unless I have HDTV or Bluray or DVDRip in the filename.

Is that the only way or is it in the Set xml in the Jukebox folder somewhere?

I thought by changing the videosource tag to HDTV or whatever it would work, but after the first test it did not work.

A sample from one of my episode nfos lists this as the video info:
Code:
<video>
        <aspect>1.778</aspect>
        <codec>h264</codec>
        <duration>54</duration>
        <height>720</height>
        <scantype>Progressive</scantype>
        <width>1280</width>
      </video>

I use Ember to scrape but I didn't see an option in there to specify to scrape the source.

If it IS in the filename or in the code, what would the acceptable tags be?
HDTV, DVDRip, Bluray...what about regular tv? TV? lol

Thanks!

A-210, Internal 2TB WD Green
YAMJ 2.7-(r3174), TOMY 1.41, GT Special zapitti
i5 2500K, Gigabyte Z68-UD4 B3, Ripjaws 8GB PC3-10666, GeForce 460GTX 1GB, CM Hyper 212 Plus
2x Mediasonic HFSU3S2 4bay
3x2TB Seagate Barracuda greens, 2x 2TB WD Green, 3TB WD Green
Find all posts by this user
Add Thank You Quote this message in a reply
01-19-2012, 03:20 AM
Post: #2
RE: Where can I specify what the source is for TV Shows?
<videosource></videosource>

HDTV, DVDRip and BluRay is fine as source. TV recordings can be tagged as "SDTV".
Maybe there could be an improvement to YAMJ to detect "SATRip" or "dTV" in filenames also as "SDTV", as currently it's considered "UNKNOWN".
Find all posts by this user
Add Thank You Quote this message in a reply
01-19-2012, 05:47 AM
Post: #3
RE: Where can I specify what the source is for TV Shows?
Thanks, I guess I edit that into the Set xml file? I had done that but it didn't seem to work...

Also, I opened templates.xsl and this looks to list the formats acceptable:
Code:
<xsl:when test="contains(videoSource,'DVDSCR')">source_dvdscr.png</xsl:when>
        <xsl:when test="contains(videoSource,'R5')">source_r5.png</xsl:when>
        <xsl:when test="contains(videoSource,'BluRay')">source_bluray.png</xsl:when>
        <xsl:when test="contains(videoSource,'HDDVD')">source_hddvd.png</xsl:when>
        <xsl:when test="contains(videoSource,'DVD')">source_dvd.png</xsl:when>
        <xsl:when test="contains(videoSource,'HDTV')">source_hdtv.png</xsl:when>
        <xsl:when test="contains(videoSource,'UNKNOWN')">unknownvideo.png</xsl:when>
        <xsl:when test="contains(videoSource,'CAM')">source_cam.png</xsl:when>
        <xsl:when test="contains(videoSource,'TS')">source_telecine.png</xsl:when>
        <xsl:when test="contains(videoSource,'D-THEATER')">source_dtheater</xsl:when>
        <xsl:when test="contains(videoSource,'WEBDL')">source_webdl.png</xsl:when>
        <xsl:when test="contains(videoSource,'SDTV')">source_sdtv.png</xsl:when>
        <xsl:otherwise>unknownvideo.png</xsl:otherwise>

A-210, Internal 2TB WD Green
YAMJ 2.7-(r3174), TOMY 1.41, GT Special zapitti
i5 2500K, Gigabyte Z68-UD4 B3, Ripjaws 8GB PC3-10666, GeForce 460GTX 1GB, CM Hyper 212 Plus
2x Mediasonic HFSU3S2 4bay
3x2TB Seagate Barracuda greens, 2x 2TB WD Green, 3TB WD Green
Find all posts by this user
Add Thank You Quote this message in a reply
01-19-2012, 07:56 AM
Post: #4
RE: Where can I specify what the source is for TV Shows?
(01-19-2012 03:20 AM)kollegah1338 Wrote:  <videosource></videosource>

HDTV, DVDRip and BluRay is fine as source. TV recordings can be tagged as "SDTV".
Maybe there could be an improvement to YAMJ to detect "SATRip" or "dTV" in filenames also as "SDTV", as currently it's considered "UNKNOWN".

http://code.google.com/p/moviejukebox/wi...e.keywords

Visit this user's website Find all posts by this user
Add Thank You Quote this message in a reply
01-19-2012, 01:50 PM
Post: #5
RE: Where can I specify what the source is for TV Shows?
(01-19-2012 07:56 AM)Omertron Wrote:  
(01-19-2012 03:20 AM)kollegah1338 Wrote:  <videosource></videosource>

HDTV, DVDRip and BluRay is fine as source. TV recordings can be tagged as "SDTV".
Maybe there could be an improvement to YAMJ to detect "SATRip" or "dTV" in filenames also as "SDTV", as currently it's considered "UNKNOWN".

http://code.google.com/p/moviejukebox/wi...e.keywords
Nice, didn't know about that one! Thanks!
(01-19-2012 05:47 AM)Temujin Wrote:  Thanks, I guess I edit that into the Set xml file? I had done that but it didn't seem to work...

Also, I opened templates.xsl and this looks to list the formats acceptable:
Code:
<xsl:when test="contains(videoSource,'DVDSCR')">source_dvdscr.png</xsl:when>
        <xsl:when test="contains(videoSource,'R5')">source_r5.png</xsl:when>
        <xsl:when test="contains(videoSource,'BluRay')">source_bluray.png</xsl:when>
        <xsl:when test="contains(videoSource,'HDDVD')">source_hddvd.png</xsl:when>
        <xsl:when test="contains(videoSource,'DVD')">source_dvd.png</xsl:when>
        <xsl:when test="contains(videoSource,'HDTV')">source_hdtv.png</xsl:when>
        <xsl:when test="contains(videoSource,'UNKNOWN')">unknownvideo.png</xsl:when>
        <xsl:when test="contains(videoSource,'CAM')">source_cam.png</xsl:when>
        <xsl:when test="contains(videoSource,'TS')">source_telecine.png</xsl:when>
        <xsl:when test="contains(videoSource,'D-THEATER')">source_dtheater</xsl:when>
        <xsl:when test="contains(videoSource,'WEBDL')">source_webdl.png</xsl:when>
        <xsl:when test="contains(videoSource,'SDTV')">source_sdtv.png</xsl:when>
        <xsl:otherwise>unknownvideo.png</xsl:otherwise>
What do you mean into the set XML? You just have to add it to the nfo file, that's it.
Find all posts by this user
Add Thank You Quote this message in a reply
01-20-2012, 03:44 AM
Post: #6
RE: Where can I specify what the source is for TV Shows?
I was adding it to the Jukebox set xmls, didn;'t work either lol
Is it case sensitive?
I added <videosource>sdtv</videosource> to one of the tvshow.nfo files and it didn't get picked up.
Sorry for being obtuse.
Code:
<title>Revenge</title>
  <id>248837</id>
  <rating>8.4</rating>
  <genre>Drama</genre>
  <mpaa>TV-14</mpaa>
  <premiered>2011-09-20</premiered>
  <studio>ABC</studio>
  <videosource>sdtv</videosource>

A-210, Internal 2TB WD Green
YAMJ 2.7-(r3174), TOMY 1.41, GT Special zapitti
i5 2500K, Gigabyte Z68-UD4 B3, Ripjaws 8GB PC3-10666, GeForce 460GTX 1GB, CM Hyper 212 Plus
2x Mediasonic HFSU3S2 4bay
3x2TB Seagate Barracuda greens, 2x 2TB WD Green, 3TB WD Green
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [YAMJ] empty Audio/Video channels added to xml files of existings tv-shows Boba Fett 6 958 04-16-2013 05:34 PM
Last Post: mattty_d2002
  Banner image naming for TV Shows? robwired 4 366 04-09-2013 08:31 AM
Last Post: Omertron
  YAMJ not making any fanart for movies or tv shows simonmullan 14 3,158 02-08-2013 03:15 AM
Last Post: De1Phi4n
  Possible to have Watched Banners on TV-SHOWS screen rd48sec 6 682 01-31-2013 02:28 AM
Last Post: rd48sec
  Problem with some TV shows --Missing seasons and season 1 duplicating yannickrose 6 554 01-23-2013 11:43 PM
Last Post: accident
  [FLASH SKIN] Eversion TV Shows Season 0 Titles eightieslad 1 353 01-12-2013 06:51 PM
Last Post: accident
  [YAMJ] TV Shows - only showing 1 season RavenElite 2 352 01-08-2013 03:46 AM
Last Post: RavenElite
  TV Shows not scraping images-info wryker 1 306 12-24-2012 07:11 PM
Last Post: accident
Photo Movies and TV Shows on different shares. How to configure YAMJ? HiSoC8Y 6 1,002 10-20-2012 07:42 PM
Last Post: HiSoC8Y
Question [YAMJ] YAMJ 2.8 v3188 broke a few shows Temujin 3 823 09-30-2012 04:46 AM
Last Post: accident

Forum Jump: