Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to Play Youtube Video on VideoView?

I have fetch many youtube video url using rss(xml Parsing) from following url

http://gdata.youtube.com/feeds/base/videos/-/justinbieber?orderby=published&alt=rss&client=ytapi-youtube-rss-redirect&v=2

but problem is this http link is not played in videoview.

Plaese Help me.

share|improve this question
If you solve it then accept answer. – Hardik Mar 22 at 13:06

2 Answers

You want to convert your gdata URL into rtsp format. Following function convert your URL into rtsp format.

public static String getUrlVideoRTSP(String urlYoutube) {

    try {
        String gdy = "http://gdata.youtube.com/feeds/base/videos/-/justinbieber?orderby=published&alt=rss&client=ytapi-youtube-rss-redirect&v=2";
        DocumentBuilder documentBuilder = DocumentBuilderFactory
                .newInstance().newDocumentBuilder();
        String id = extractYoutubeId(urlYoutube);
        URL url = new URL(gdy + id);
        HttpURLConnection connection = (HttpURLConnection) url
                .openConnection();
        Document doc = documentBuilder.parse(connection.getInputStream());
        Element el = doc.getDocumentElement();
        NodeList list = el.getElementsByTagName("media:content");// /media:content
        String cursor = urlYoutube;
        for (int i = 0; i < list.getLength(); i++) {
            Node node = list.item(i);
            if (node != null) {
                NamedNodeMap nodeMap = node.getAttributes();
                HashMap<String, String> maps = new HashMap<String, String>();
                for (int j = 0; j < nodeMap.getLength(); j++) {
                    Attr att = (Attr) nodeMap.item(j);
                    maps.put(att.getName(), att.getValue());
                }
                if (maps.containsKey("yt:format")) {
                    String f = maps.get("yt:format");
                    if (maps.containsKey("url")) {
                        cursor = maps.get("url");
                    }
                    if (f.equals("1"))
                        return cursor;
                }
            }
        }
        return cursor;
    } catch (Exception ex) {
        Log.e("Get Url Video RTSP Exception======>>", ex.toString());
    }
    return urlYoutube;
}

private static String extractYoutubeId(String url) {

    return url;
}  

And the complete example show how to get videos from Youtube channel in listview is click here

share|improve this answer
hello hardik, in this example the video is playing in webview not mediaplayer and i want to play youtube video in mediaplayer. – Dipak Keshariya Jun 25 '12 at 7:32
Create one activity and pass rtsp URL of video(URL of particular video in which user click) as bundle and then write bellow code. Bundle bundle = getIntent().getExtras(); final String data = bundle.getString("videoid"); final VideoView vv = (VideoView) findViewById(R.id.VideoView); MediaController mc = new MediaController(this); mc.setEnabled(true); mc.show(0); vv.setMediaController(mc); vv.setVideoURI(Uri.parse(getUrlVideoRTSP(data))); – Hardik Jun 25 '12 at 7:41
Have you try this? – Hardik Jun 25 '12 at 8:31

this library looks quite promising: http://code.google.com/p/android-youtube-player/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.