我正在尝试将桌面的一部分流式传输到我的 Android 设备。
我通过 VLC 媒体播放器创建流。我以 2048 Kb/sec 和 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;
}
}