如何阅读&在Android中播放.m3u8文件?

时间:2012-12-18 10:56:59

标签: android android-mediaplayer

我想在我的应用程序中播放.ts格式文件。我有一个.m3u8扩展名文件的网址http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8

当我从网址播放视频时,播放效果很好。 以下是从网址播放视频的代码...

    try
    {
        String path = "http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8";

        Uri uri = Uri.parse(path);
        videoView.setVideoURI(uri);
        videoView.start();
    } catch (Exception e)
    {
        // TODO: handle exception
        e.printStackTrace();
    }

我已经检查过prog_index.m3u8文件包​​含.ts文件列表&通过URL运行时,此文件运行正常。 但我想要的是自己阅读.m3u8文件&从那里我可以提取.ts文件&播放那些.ts文件。

有可能吗?

如果无法读取.m3u8文件,我可以播放.ts文件。如果我将其本地存储在我的原始文件夹中或从流中读取。

2 个答案:

答案 0 :(得分:0)

好的,我在我的应用程序中使用FFmpeg解决了我的问题。我使用appunite给出的示例。

现在我可以播放.ts文件了。

答案 1 :(得分:0)

MainActivity.java

包com.example.hlsdemo;

import android.net.Uri;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.MediaController;
import android.widget.VideoView;

public class MainActivity extends Activity {
    Button startB; 
    VideoView mVideoView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        startB=(Button) findViewById(R.id.button);
        startB.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                mVideoView = (VideoView) findViewById(R.id.surface_view);
                mVideoView.setVideoURI(Uri.parse("http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"));
                mVideoView.setMediaController(new MediaController(MainActivity.this));
                mVideoView.requestFocus();
                mVideoView.postInvalidateDelayed(100);
                new Thread(new Runnable() {
                    public void run() {
                        mVideoView.start();

                    }
                }).start();
            }
        });
    }

}

<强> activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

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

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/surface_view"
        android:layout_marginRight="62dp"
        android:layout_marginTop="16dp"
        android:text="Stop" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/button1"
        android:layout_alignBottom="@+id/button1"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="34dp"
        android:text="Start" />

</RelativeLayout>

并确保AndroidManifest.xml中的互联网权限