Im wondering if is possible to do this. Anywhere on my view I want to see a list of videos (from my youtube channel or just a playlist created by me), this way the user can click in any of them and using the youtube player API would be visualizated in the bottom of the screen for example.
Is this possible to do and if so, how complicated could be? (im really a beginner in android, not in programming). Ive read about Youtube DATA APi but it seems is used with the youtube app so its not what I want to do.
Thanks a lot.
Editing 21/05/2014
Adding information just in case someone in the future is interested in doing this (after one year, but better later than never). I uploaded an exemplary app that shows how to do this. It can be found in the following GitHub repository: https://github.com/Rafagf/HealthTube
Have you taken a look at the examples in the documentation? That's the best place to get started. I don't think anyone is going to be able to provide you with more complete code than what's available there.
Related
I just want to know that is it possible to display custom video ads on native videoPlayer . iwas doing R&D on this topic and got IMA SDk from google developers .
link given bellow :-
https://developers.google.com/interactive-media-ads/docs/sdks/android/quickstart
i downloaded it's sample and make them run on my system they are exactly doing the same thing which i want. i studied the code and found that they are using special type od URL to display their video ,So my first question is that how to get that URL and is that free to make ?
or i need to use framelayout and have to build my custom Ui for achieving that.
The point is i have my store and i want to implement only my store videos as ads on native video player in my application.I am new to this approach and trying to found good solution .Therefore i am here to seek some guidance from you experts.
Any help will be appreciated , Please do provide me some suggestions, i will be very grateful to you.
Regards
Is there any way to get my YouTube channel's top fans data? I heard there is a YouTube api but didnt find info about fans.
This is your channel's youtube fan page : https://www.youtube.com/audience?sf=engagement_score
I guess what you want to achieve can be performed by using Youtube Analytics and Reporting APIs. Specifically, Channel reports. However, there is no functionality to return "Top Fans" per-se. However, you can use this API and develop a function that compares subscribers of your channels against how many videos they have liked, shared, favorited, added to playlists or any other logic that you want to implement. However, that will have to be done and defined by you on your end.
Hope this helps.
I'm looking into creating an android app and wanted to make something that could show what people around the user are listening to. Is there any way to do this? I've been looking at the Spotify SDK and it dosen't appear to be possible, but I wanted to confirm.
Sarah Markers,
To identify the music being played around you, I would suggest you to read this article http://www.royvanrijn.com/blog/2010/06/creating-shazam-in-java/ .
I could not find anything on Spotify SDK which can help you with determining the music.
i'm very very new to android/java and am trying to create a basic video player on android.
i have researched all throughout stackoverflow, google, youtube, etc but i really can't seem to find a way to do this..
my goal is to have a listview that shows all the compatible videos on the android device. then, after tapping on one of the items in the listview, the video would play.
i did find some very helpful resources, such as http://www.android-trainer.com/playing-with-videos-from-content-providers-part-3-.html , but this code uses the deprecated method managedquery()
i was then lead to this website: http://mobile.tutsplus.com/tutorials/android/android-sdk_loading-data_cursorloader/comment-page-1/#comment-15832 to find a way around the managedquery() method, but judging from the comments, this tutorial is ridden with bugs... i tried to debug the tutorial but i was hoping someone could give me a clear explanation of what to do...
should i focus on the first link and figure out how to go around the deprecated managedquery() method? if so, how do i go about avoiding the managedquery() method?
or is there another, perhaps simpler, way of creating a video player that can play all the videos in the device?
thank you
Where do you want the list to come from? Are you ok with using the default video player?
Where are the videos stored?
ManagedQuery (and cursorloader) is for traversing through a database. You don't need that.
Right now I'm in the process of making an app that streams video from the popular streaming site "Own3d.tv". The app is going great and I'm almost ready for release. I have the own3d TV API and basically I want to fetch the top streams and display them in the app. So I would want to acquire the Name of the stream/streamer along with the view count.
The link to the XML page would be something like this: ("http://api.own3d.tv/live.php?game=LoL")
I'm pretty sure this is possible to do. So if someone could help me out or just point me in the right direction that would be awesome!
This is absolutely possible and and is rather easy to achieve, see this.