Advertisement
Guest User

Untitled

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