mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2025-02-16 11:28:26 +00:00
This commit is contained in:
parent
a76a4edfcd
commit
5e9a4d092a
2 changed files with 130 additions and 0 deletions
122
src/components/modules/ExportTools/movieFields.json
Normal file
122
src/components/modules/ExportTools/movieFields.json
Normal file
|
@ -0,0 +1,122 @@
|
|||
{
|
||||
"Media ID":
|
||||
{
|
||||
"key": "ratingKey",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Title":
|
||||
{
|
||||
"key": "title",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Sort title":
|
||||
{
|
||||
"key": "titleSort",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Studio":
|
||||
{
|
||||
"key": "studio",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Content Rating":
|
||||
{
|
||||
"key": "contentRating",
|
||||
"call": "1",
|
||||
"type": "int32"
|
||||
},
|
||||
"Year":
|
||||
{
|
||||
"key": "year",
|
||||
"call": "1",
|
||||
"type": "int"
|
||||
},
|
||||
"Rating":
|
||||
{
|
||||
"key": "rating",
|
||||
"call": "1",
|
||||
"type": "int32"
|
||||
},
|
||||
"Summary":
|
||||
{
|
||||
"key": "summary",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Genre":
|
||||
{
|
||||
"key": "['Genre']['tag']",
|
||||
"call": "1",
|
||||
"type": "array"
|
||||
},
|
||||
"View Count":
|
||||
{
|
||||
"key": "viewCount",
|
||||
"call": "1",
|
||||
"type": "int"
|
||||
},
|
||||
"Last Viewed at":
|
||||
{
|
||||
"key": "lastViewedAt",
|
||||
"call": "1",
|
||||
"type": "datetime"
|
||||
},
|
||||
"Tagline":
|
||||
{
|
||||
"key": "tagline",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Release Date":
|
||||
{
|
||||
"key": "originallyAvailableAt",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"Writers":
|
||||
{
|
||||
"key": "['Writer']['tag']",
|
||||
"call": "1",
|
||||
"type": "array"
|
||||
},
|
||||
"Country":
|
||||
{
|
||||
"key": "['Country']['tag']",
|
||||
"call": "1",
|
||||
"type": "array"
|
||||
},
|
||||
"Duration":
|
||||
{
|
||||
"key": "duration",
|
||||
"call": "1",
|
||||
"type": "time"
|
||||
},
|
||||
"Directors":
|
||||
{
|
||||
"key": "['Director']['tag']",
|
||||
"call": "1",
|
||||
"type": "array"
|
||||
},
|
||||
"Roles":
|
||||
{
|
||||
"key": "['Role']['tag']",
|
||||
"call": "1",
|
||||
"type": "array"
|
||||
},
|
||||
"Audience Rating":
|
||||
{
|
||||
"key": "audienceRating",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
},
|
||||
"User Rating":
|
||||
{
|
||||
"key": "userRating",
|
||||
"call": "1",
|
||||
"type": "string"
|
||||
}
|
||||
}
|
8
src/components/modules/ExportTools/movieLevels.js
Normal file
8
src/components/modules/ExportTools/movieLevels.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
var levels = ["Level1", "Level2"];
|
||||
|
||||
var Level1 = ["Media ID", "Title", "Sort title",
|
||||
"Studio", "Content Rating", "Year",
|
||||
"Rating", "Summary"];
|
||||
|
||||
var Level2 = ["Media ID", "Title", "Sort title"];
|
||||
|
Loading…
Add table
Reference in a new issue