-
Notifications
You must be signed in to change notification settings - Fork 260
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Configure Feed with Vimeo #56
Comments
Hi gtstuntzb: I am a total novice but I have some experience with Vimeo streaming for Roku. Having said that, the hard links to the video (as opposed to the page) generally look like this: The HLS streams look like his: https://player.vimeo.com/external/292600544.m3u8?s=46385d2fb33a0792fef2d93eb7b369e8b5cf77b5 You can find the hard links by navigating to the "settings" page for each video and select Distribution ----> Video File Links. That will reveal a number of options for hard linking the video for external playback. Hope that helps! |
Thanks for the help! I'm using the media feed to upload entire showcases at a time. Your response helped me realize that I could try using a json feed instead of the xml, since the video link is more similar to the ones you shared. When I get around to trying it I will share the results. |
I am finding that the main issue with using the JSON feed from Vimeo (the one generated under Showcases --> #ShowcaseName --> TV apps --> Roku) is that it does not contain all of the necessary information including thumbnails, descriptions, showcase name/categories, etc. With that said, has anyone had success importing the XML feed generated on Vimeo at Showcases --> #ShowcaseName --> TV apps --> amazon fire TV ? Thanks! |
Hello! I am trying to configure my feed using a Vimeo xml feed and am wondering if there is any known recipe to get it to load properly from Vimeo. Mine just keeps crashing when I build it and I KNOW it has to do with my recipe.
Here's an example of my xml feed:
And my recipe:
{
"cooker": "DynamicParser",
"format": "xml",
"model": "com.amazon.android.model.content.Content",
"translator": "ContentTranslator",
"modelType": "array",
"query": "//item[./title='$$par0$$']",
"queryResultType": "[]$",
"matchList": [
"title/#text@mTitle",
"guid/#text@mId",
"description/#text@mDescription",
"link/#text@mUrl",
"media:content/media:thumbnail/#attributes/url@mCardImageUrl",
"media:content/media:thumbnail/#attributes/url@mBackgroundImageUrl"
]
}
I believe the problem is that the "link" in my xml feed (
https://vimeo.com/395345323
) doesn't link directly to the video, but rather to the Vimeo page the that video is on. The actual video has a very similar web address ----------->https://player.vimeo.com/video/395345323
Both have the same ending (
395345323
). I'm pretty new to coding - is there a way I can tell the code to begin with "https://player.vimeo.com/video/
" and then call the LAST part from the xml file "395345323
" ?Thanks for your help!
The text was updated successfully, but these errors were encountered: