0

http://www.youtube.com/watch?v= "yt_id" yt_id は文字列です。

webview を試してみましたが、2 秒間ローディング画面が表示された後、黒い画面が表示されます

私はビデオビューを試しましたが、YouTube からの RTSP コードが必要ですが、YouTube の標準 URL を 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 に答える