0

アプリケーションで.ts形式のファイルを再生したい。.m3u8拡張子ファイルのURLhttp ://devimages.apple.com/iphone/samples/bipbop/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ファイルを再生できます。rawフォルダーにローカルに保存した場合、またはストリームから読み取った場合。

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 Permission を確認してください

于 2014-01-02T12:21:27.383 に答える