Advertisement
Guest User

Untitled

a guest
Dec 17th, 2012
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.09 KB | None | 0 0
  1. <tvshow>
  2. <title></title>
  3. <rating></rating> <!-- 0 - 10 rating, can be decimal -->
  4. <ratings>
  5. <rating moviedb="imdb"></rating>
  6. <rating moviedb="allocine"></rating>
  7. </ratings>
  8. <season></season> <!-- currently unused at series level -->
  9. <episode></episode> <!-- currently unused at series level -->
  10. <displayseason></displayseason> <!-- currently unused at series level -->
  11. <displayepisode></displayepisode> <!-- currently unused at series level -->
  12. <plot></plot> <!-- a longer plot description -->
  13. <thumb></thumb> <!-- url of poster image. use URL formatting, such as http:// for internet resources or file:/// for local resources -->
  14. <fanart></fanart> <!-- url of fanart image. use URL formatting, such as http:// for internet resources or file:/// for local resources -->
  15. <mpaa></mpaa>
  16. <certification></certification> <!-- Used for all certification that isn't MPAA and only used if imdb.getCertificationFromMPAA=false -->
  17. <tvdbid></tvdbid> <!-- the TheTVDB id of the series. An alternative to using id. For support of other scrapers -->
  18. <id></id> <!-- the TheTVDB id of the series. Use an id of 0 or -1 to disable further internet plugin scraping. -->
  19. <id moviedb="imdb"></id> <!-- the IMDB id of the movie. includes the leading "tt" -->
  20. <id moviedb="allocine"></id> <!-- the allocine id of the movie. This should work for other plugins using their PLUGIN_ID as "moviedb" value -->
  21. <id moviedb="filmweb"></id> <!-- the filmweb id of the movie. This should work for other plugins using their PLUGIN_ID as "moviedb" value -->
  22. <trailer></trailer> <!-- multiple trailer records may exist -->
  23. <genre></genre> <!-- multiple genre records may exist, including any custom ones -->
  24. <premiered></premiered> <!-- the original air date of the series (YYYY-MM-DD) -->
  25. <company></company> <!-- The studio company that produced the TV Show -->
  26. <studio></studio> <!-- Synonym for company tag -->
  27. <country></country> <!-- Country the video was produced in -->
  28. <watched></watched> <!-- This will mark the WHOLE TV Season watched or unwatched -->
  29. <actor> <!-- multiple actor records may exist -->
  30. <name></name>
  31. <role></role> <!-- currently unused in YAMJ -->
  32. <thumb></thumb> <!-- currently unused in YAMJ -->
  33. </actor>
  34. <credits>
  35. <writer></writer> <!-- Writer name, one per entry -->
  36. </credits>
  37. <director></director>
  38. <sets>
  39. <set>First Set Name</set>
  40. <set order="?">Another Set With An Order</set>
  41. </sets>
  42. <!-- NOTE: All of the following tags will OVERWRITE the derived data -->
  43. <videosource></videosource> <!-- The video source of the file -->
  44. <videooutput></videooutput> <!-- The video output of the file -->
  45. <fps></fps> <!-- The Frames Per Second value for the movie. NOTE: This should be a valid float value (with a ".") -->
  46. <fileinfo>
  47. <container></container> <!-- Container of the video -->
  48. <streamdetails>
  49. <video>
  50. <codec></codec>
  51. <aspect></aspect>
  52. <width></width> <!-- Width of the video file -->
  53. <height></height> <!-- Height of the video file -->
  54. </video>
  55. <audio>
  56. <codec></codec>
  57. <language></language>
  58. <channels></channels>
  59. </audio>
  60. <subtitle>
  61. <language></language>
  62. </subtitle>
  63. </streamdetails>
  64. </fileinfo>
  65. </tvshow>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement