Android视频直播

时间:2012-05-02 04:42:11

标签: android video-streaming http-live-streaming live-streaming http-streaming

我遇到了大麻烦,我无法在我的android视频中播放m3u8文件,但在iPhone中却很容易。我用谷歌搜索并访问了几个论坛,所有人都说这是不可能的。但我尝试了vitamio(http://vov.io/vitamio/),它可以流5到6秒。那是有机会流,但是怎么样?

如果android中的m3u8流媒体很难,怎么能从IPcamera流到我的Android设备?

如果有人知道这一点,请回复,我非常感谢您的回复,因为我花了更多的时间来做这件事。

1 个答案:

答案 0 :(得分:0)

我曾尝试使用Android版本2.1,2.2,2.3,2.3.6和4.0的设备。 vitamio应用程序可以在所有设备中将网址流式传输5到6秒,除了具有Android 4.0版本的设备HTC onex。

我在下面给出了调用简单m3u8 url的代码。 非常感谢yorkw。

的活动:

       package com.livestrean;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.widget.MediaController;
import android.widget.Toast;
import android.widget.VideoView;

public class streamplayer extends Activity {
    /** Called when the activity is first created. */


     private String path = "An m3u8 Url";


     private VideoView mVideoView;




    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        try
        {
            setContentView(R.layout.surface_view_1);
            mVideoView = (VideoView) findViewById(R.id.surface_view);

                mVideoView.setVideoURI(Uri.parse(path));                
                mVideoView.setMediaController(new MediaController(this));
                mVideoView.requestFocus();              
                mVideoView.postInvalidateDelayed(100);        
                mVideoView.start();



        }catch (Exception e) {

            Toast.makeText(streamplayer.this,"Error Occured:- " + e.getMessage(),Toast.LENGTH_SHORT).show();
        } 
    }
}

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <VideoView 
        android:id="@+id/surface_view" 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="center"/>

</LinearLayout>

由于