デスクトップの一部を Android デバイスにストリーミングしようとしています。
VLC メディア プレーヤーを使用してストリームを作成します。2048 Kb/秒、30 fps の H.264 ストリームを構築し、それを mp4/mov コンテナーにパックして、rtsp://[my-ip]:[port]/stream のように公開します。メディア サーバーからファイルを単純にストリーミングするのではなく、上記のプロパティを使用してストリーム経由でデスクトップのライブ翻訳を利用できるようにすることが重要です。
ここhttp://developer.android.com/guide/appendix/media-formats.htmlの Android ドキュメントによると、Android デバイスで RTSP ストリーム経由で H.264 ビデオを消費できる必要があります (私のデバイスは 4.2 で動作します)。
しかし、私の VideoView ウィジェットにはビデオが見つからないと表示されますが、ここにインストールされている VLC プレーヤーを使用して別の PC からストリームを実際に見ることができます。では、最初の目標を達成するにはどうすればよいでしょうか。
これが私のAndroidアプリケーションコードです:
main_layout.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<VideoView
android:id="@+id/videoRectangle"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="100dp" />
<Button
android:id="@+id/connectToVideoServerButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/videoRectangle"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp"
android:text="Присоединиться" />
<EditText
android:id="@+id/streamServerAddress"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignBaseline="@+id/connectToVideoServerButton"
android:layout_alignBottom="@+id/connectToVideoServerButton"
android:layout_marginLeft="30dp"
android:layout_toRightOf="@+id/connectToVideoServerButton"
android:ems="10"
android:hint=""
android:text="" >
<requestFocus />
</EditText>
</RelativeLayout>
MainActivity.java:
package com.example.videostreamerclient;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.VideoView;
public class MainActivity extends Activity {
private VideoView videoView;
private Button videoServerConnectBtn;
private EditText streamServerAddress;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
videoView = (VideoView) findViewById(R.id.videoRectangle);
streamServerAddress = (EditText) findViewById(R.id.streamServerAddress);
videoServerConnectBtn = (Button) findViewById(R.id.connectToVideoServerButton);
videoServerConnectBtn.setOnClickListener(videoServerConnectBtnClicked);
}
private View.OnClickListener videoServerConnectBtnClicked = new View.OnClickListener() {
@Override
public void onClick(View v){
if ( streamServerAddress.getText().toString() != "" )
{
videoView.setVideoPath( streamServerAddress.getText().toString() );
videoView.start();
}
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}