Roku Direct Publisher

Roku Direct Publisher - the easiest way to create a great TV experience. Learn more about how to create a Roku channel and share your experiences with others.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Possum
Level 7

Disappearing Categories?

On my channel I utilize fully the Categories functionality of Direct Publisher.  Thus I have something like 15 or so categories defined which are correlated to my content via tags.

If you are familiar with Direct Publisher you probably understand what I am describing.

When I initially created the channel my categories appeared properly.  But over time all of my specific categories have disappeared.

Does anyone else have this issue?

BTW, my categories are still properly defined in the Channel's configuration.  Just missing on the final product which is pushed out to viewers.

I do still have showing on my channel the "Recently Added" , "Most Popular" and "Highlighted" categories.  Is Highlighted a default Roku DP category?  I can't remember.  Neither here nor there since all my other 15 or so specific categories are missing.

Thanks for your observations.  I appreciate your time. 

0 Kudos
8 REPLIES 8
Baradanikto
Level 13

Re: Disappearing Categories?

Have you made sure to check the flag in the developer's portal that indicates that your channel categories are defined in the feed file?

FREE Windows desktop software for creating BIF (Trick Play), Direct Publisher (MRSS, JSON), and FireTV feeds @ GitHub/rrirower.
0 Kudos
MrKororo
Level 7

Re: Disappearing Categories?

I had this problem with making an SDK channel. I had the categories, and then they worked for awhile when I tested. Yet then they disappeared on me after a week or so. Does anyone have any suggestions on what is going wrong?

0 Kudos
37mediagroup
Level 13

Re: Disappearing Categories?

This is the Direct Publisher forum, not SDK.  But, that aside, did you fill in 'tags' in your feed to correlate and fill up the categories?

0 Kudos
MrKororo
Level 7

Re: Disappearing Categories?

I tried to fill in 'tags' with the parenthesis and names, but how would you fill in a tag yourself? 

0 Kudos
ferdiworks
Level 9

Re: Disappearing Categories?

Tags in your json feed file should look like this"

"tags": [
"Bushcraft"
],
"genres": [
"adventure"
]

OnDemandTV
admin@ondemandtvnetworks.com
0 Kudos
MrKororo
Level 7

Re: Disappearing Categories?

Thank you. I forgot to have the genre. Another question, where do I put the weblink in the feed file for the categories?

 

0 Kudos
ferdiworks
Level 9

Re: Disappearing Categories?

I am going to assume your working with a json feed for a direct publisher channel!

Your feed can have several links such as:

Video to display content video

Thumbnail for video image

Trickplay  for video over 15 minutes!

Categories do not have a link!

Categories have two options

1) Categories definded by the feed

Roku looks atr your feed and selects all "tag" elements and displays by tag, tag = category!

2) Custom!

You must enter tags in custom and only custom categories will show!

You cannot use both options it's one or the other!

 

example:

{
"id": "1600457786150",
"title": "The Terminator 1",
"shortDescription": "The Terminator 1",
"tags": [
"The Joe Show"
],
"genres": [
"special"
],
"content": {
"dateAdded": "2020-09-18T19:37:40+00:00",
"duration": 48,
"videos": [
{
"url": "http://51.158.101.1/621234562/ondemandtv/content/1600457786150.mp4",
"quality": "HD",
"videoType": "MP4",
"bitrate": 4000,
"filesize": "29372458"
}
]
},
"author": "On Demand TV Services",
"thumbnail": "http://51.158.101.1/634562/ondemandtv/content/1600457802.jpg",
"releaseDate": "2020-09-18"
},

OnDemandTV
admin@ondemandtvnetworks.com
0 Kudos
MrKororo
Level 7

Re: Disappearing Categories?

By chance, would this be the same way to do it for a SDK channel?

0 Kudos