0

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

当我从 url 播放视频时,它可以正常播放。这是从网址播放视频的代码...

    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 文件吗。如果我将其存储在本地原始文件夹中或从流中读取。

4

2 回答 2

0

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

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

于 2013-01-02T13:13:20.167 回答
-1

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 中的 Internet 权限

于 2014-01-02T12:21:27.383 回答