Hi, I’m new to Plex plugin development and can’t solve the following question.
What is the difference between MovieObject and VideoClipObject?
The API documentation says they have the same attributes, right… but they are not the same.
Using the SAME values for both statements:
1- oc.add(MovieObject(url=url, title=title, thumb=thumb))
2- oc.add(VideoClipObject(url=url, title=title, thumb=thumb))
A MovieObject item looks like a movie poster (taller than wide) but a VideoClipObject has more like a TV ratio (16:9, wider than tall)
Clicking VideoClipObject’s will bring me directly to the video details but clicking a MovieObject will bring me to a listing with only that MovieObject, on which I click to go to the movie details.
What I’d like is something acting like a VideoClipObject but in the format of the MovieObject (like a movie poster) because the images from the source site are in that format.
Thank you in advance!
Edit: I am using the exact same URL Service for both statements
