いくつかのAndroid RTMPライブラリ(このように: http://rtmpdump.mplayerhq.hu/ ))を見つけました。
問題は、それをどのように使用できるかについての正確なドキュメントがないことです。
私の場合、単純なRTMPライブオーディオストリームがあります(例:rtmp:// myserver/myapp/myliveaudio)。
私のAndroidアプリでそれを読む最も簡単な方法は何ですか?
リンクは必要ありません。コードの一部または正確なステップバイステップの説明が必要です。
どうもありがとうございました。
残念ながら、それを行うのは簡単ではありません。今のところ、最善の策は http://code.google.com/p/Android-rtmp-client/ のコードを確認することです。具体的には http:// code .google.com/p/Android-rtmp-client/source/browser/trunk/example/com/ryong21/example/recorder/RecorderClient.Java および http://code.google.com/ p/Android-rtmp-client/source/browser/trunk/example/com/ryong21/example/recorder/Recorder.Java 。これらは、ストリーミングされたMP3ファイルを取り込み、その内容をディスク上のFLVファイルに記録する方法を説明します。
スピーカーからオーディオデータを再生するには、RecorderClient.Javaファイル(具体的には193行目あたり)を変更する必要があります。
これが役立つかどうかはわかりませんが... Flashを使用して同様のこと(rtmp-ストリーミングビデオ)を行うことができたので、これにはAndroid 2.2+が必要です。
とにかく、私はフラッシュビデオを表示するHTMLページを作成し、WebViewでページを開きました。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<style type="text/css" media="screen">
html, body{
margin:0;
padding:0;
height:100%;
}
#altContent{
width:100%;
height:100%;
}
</style>
<title>YOUR TITLE HERE!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.HaloColor = "0x0086db";
flashvars.ToolTips = "true";
flashvars.AutoPlay = "true";
flashvars.VolumeLevel = "50";
flashvars.CaptionURL = "YOUR CAPTION HERE";
flashvars.Title = "YOUR TITLE HERE";
flashvars.Logo = "";
flashvars.SRC = "rtmp://YOUR STREAM URL HERE";
flashvars.BufferTime = "5";
flashvars.AutoHideControls = "false";
flashvars.IsLive = "true";
var params = {};
params.wmode = "transparent";
params.allowfullscreen = "true";
var attributes = {};
attributes.id = "L3MP";
swfobject.embedSWF("http://media-player.cdn.level3.net/flash/v1_1_1/Level3MediaPlayer.swf", "altContent", "100%", "100%", "10.1.0","http://media-player.cdn.level3.net/flash/v1_1_1/expressInstall.swf", flashvars, params, attributes);
</script>
</head>
<body>
<div id="altContent">
<center> <BR><BR><span style="color:red"><b>Please Install Adobe Flash Player</b>
</span><BR><BR>
<a href="http://www.Adobe.com/go/getflashplayer"><img src="http://www.Adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a>
</center>
</div>
</body>
</html>
</script>
</html>
OK ...プロジェクトのアセットフォルダに保存し、アクティビティで次のように開きます。
String LocalFile = "file:///Android_asset/YOUR_HTML_FILE.htm";
WebView webView = (WebView) findViewById(R.id.YOUR_WEB_VIEW);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setPluginsEnabled(true);
webSettings.setLoadWithOverviewMode(true);
webSettings.setUseWideViewPort(true);
webSettings.setAllowFileAccess(true);
webView.setBackgroundColor(Color.BLACK);
webView.setVerticalScrollBarEnabled(false);
webView.setHorizontalScrollBarEnabled(false);
webView.loadUrl(LocalFile);
それは少し回避策です...それがあなたのために働くことを願っています。 CDub。