0

我想在我的应用程序中有一个 youtube 播放器,我可以在其中调整 youtube 的网址,例如http://www.youtube.com/watch?v= "yt_id" yt_id 是一个字符串。

我已经尝试过 webview,但我得到了两秒钟的加载屏幕,然后是黑屏

我试过videoview,但你需要一个来自youtube的RTSP代码,但我找不到一个可以将youtube标准网址更改为RTSP的好代码。

由于各种原因,不能自行访问 youtube 应用程序。

并且 api 3.0 还没有推出。

任何人都可以帮助我,在此先感谢。

4

2 回答 2

0

我也有同样的问题,但现在 youtube 对我来说很好用。

检查以下链接。

YouTube 视频未在 WebView 中播放 - Android

于 2012-10-13T08:01:36.830 回答
0

您可以按照此代码获取 youtube 视频的 RTSP 链接

    public static String getUrlVideoRTSP(String urlYoutube)
    {
        try
        {
            String gdy = "http://gdata.youtube.com/feeds/api/videos/";
            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());
            org.w3c.dom.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;

    }
protected static String extractYoutubeId(String url) throws MalformedURLException
    {
        String id = null;
        try
        {
            String query = new URL(url).getQuery();
            if (query != null)
            {
                String[] param = query.split("&");
                for (String row : param)
                {
                    String[] param1 = row.split("=");
                    if (param1[0].equals("v"))
                    {
                        id = param1[1];
                    }
                }
            }
            else
            {
                if (url.contains("embed"))
                {
                    id = url.substring(url.lastIndexOf("/") + 1);
                }
            }
        }
        catch (Exception ex)
        {
            Log.e("Exception", ex.toString());
        }
        return id;
    }

videoUrl = getUrlVideoRTSP(youtube_url);

获得 RTSP 链接后,您可以在视频视图中播放该链接。希望它对您有用,因为它在我的应用程序中有效。谢谢。

于 2012-10-27T10:49:39.190 回答