Is there any way to fetch vertical (or non-vertical) videos via API #85
-
BackgroundWe are using the IssueWhile the ANS for videos includes a QuestionIs there any way I am not aware of to fetch videos via API, filtering by video aspect ratio? We could add a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
We ended up creating a video type called "Vertical Video" that automatically applies the "vertical-video" tag. Then we filter out videos with that tag via I don't think this is an ideal solution (it'd be better to be able to filter on the |
Beta Was this translation helpful? Give feedback.
We ended up creating a video type called "Vertical Video" that automatically applies the "vertical-video" tag. Then we filter out videos with that tag via
q=type:video+AND+taxonomy.tag.text:"test"+AND+NOT+taxonomy.tag.text:"vertical-video".I don't think this is an ideal solution (it'd be better to be able to filter on the
additional_properties.verticalmetadata) but it works well enough for us.