Hi EddyJames,
You have to create the categories so that your feed will allow DP to do it's job.
You have to put a category for each of the various videos - onestory, twostory, garage, nogarage - and so on.
Then there has to be a way to pick those categories, like a rule for the categories. Those are the lines that will appear in channel page.
This is what I would do, I am adding just a sample JSON that I haven't checked for accuracy or anything, but it would look something similar to this:
{
"id": "1001",
"title": "video title",
"shortDescription": "Description of the videos",
"thumbnail": "http://url-of-thumbnail with 16x9 dimensions",
"genres": [
"your genre"
],
"tags": [
"onestory", "nogarage"
],
"releaseDate": "2019-07-24",
"content": {
"dateAdded": "2019-07-24T14:14:54.431Z",
"captions": [],
"duration": 105, 'number of seconds video runs'
"adBreaks": [
"00:00:00"
],
"videos": [
{
"url": "http://URL TO video",
"quality": "HD",
"videoType": "MP4"
}
]
}
},
{
"id": "1002",
"title": "video title",
"shortDescription": "Description of the videos",
"thumbnail": "http://url-of-thumbnail with 16x9 dimensions",
"genres": [
"comedy"
],
"tags": [
"twostory", "nogarage"
],
"releaseDate": "2019-07-24",
"content": {
"dateAdded": "2019-07-24T14:14:54.431Z",
"captions": [],
"duration": 105, 'number of seconds video runs'
"adBreaks": [
"00:00:00"
],
"videos": [
{
"url": "http://URL TO video",
"quality": "HD",
"videoType": "MP4"
}
]
}
},
{
"id": "1003",
"title": "video title",
"shortDescription": "Description of the videos",
"thumbnail": "http://url-of-thumbnail with 16x9 dimensions",
"genres": [
"comedy"
],
"tags": [
"onestory", "threecargarage"
],
"releaseDate": "2019-07-24",
"content": {
"dateAdded": "2019-07-24T14:14:54.431Z",
"captions": [],
"duration": 105, 'number of seconds video runs'
"adBreaks": [
"00:00:00"
],
"videos": [
{
"url": "http://URL TO video",
"quality": "HD",
"videoType": "MP4"
}
]
}
},
{
"id": "1004",
"title": "video title",
"shortDescription": "Description of the videos",
"thumbnail": "http://url-of-thumbnail with 16x9 dimensions",
"genres": [
"whatever genre you have chosen"
],
"tags": [
"twostory", "threecargarage"
],
"releaseDate": "2019-07-24",
"content": {
"dateAdded": "2019-07-24T14:14:54.431Z",
"captions": [],
"duration": 105, 'number of seconds video runs'
"adBreaks": [
"00:00:00"
],
"videos": [
{
"url": "http://URL TO video",
"quality": "HD",
"videoType": "MP4"
}
]
}
}
],
"categories": [
{
"name": "Featured",
"query": "featured",
"order": "most_popular"
},
{
"name": "One Story",
"query": "onestory",
"order": "chronological"
},
{
"name": "Two Story",
"query": "twostory",
"order": "chronological"
},
{
"name": "No Garage",
"query": "nogarage",
"order": "chronological"
},
{
"name": "Three Car Garage",
"query": "threecargarage",
"order": "chronological"
}
]
}
I didn't check for comma's or any other punctuation but you gotta tell it what to do. The direct publisher will follow your instructions, you just have to be clear with what you want.