1

Androidでビデオプレーヤーを作ろうとしています。3GP 形式のビデオを再生します。しかし、それはmp4ビデオをサポートしていません.以下は、同じAndroidの私のコードです.デバイスとエミュレータでmp4形式をサポートしていないのはなぜですか?

package com.example.videoplayer;


import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import org.json.JSONObject;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.StrictMode;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.URLUtil;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.Toast;
import android.widget.VideoView;

public class VideoViewDemo extends Activity {
    private static final String TAG = "VideoViewDemo";

    private VideoView mVideoView;
    private EditText mPath;
    private ImageButton mPlay;
    private ImageButton mPause;
    private ImageButton mReset;
    private ImageButton mStop;
    private String current;

    @SuppressLint({ "NewApi", "NewApi", "NewApi" })
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.activity_main);
        StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();

        StrictMode.setThreadPolicy(policy); 
        mVideoView = (VideoView) findViewById(R.id.surface_view);

        mPath = (EditText) findViewById(R.id.path);
        mPath.setText("ooklnet.com/files/368/368007/video.mp4");

        mPlay = (ImageButton) findViewById(R.id.play);
        mPause = (ImageButton) findViewById(R.id.pause);
        mReset = (ImageButton) findViewById(R.id.reset);
        mStop = (ImageButton) findViewById(R.id.stop);

        mPlay.setOnClickListener(new OnClickListener() {
            public void onClick(View view) {
                playVideo();
            }
        });
        mPause.setOnClickListener(new OnClickListener() {
            public void onClick(View view) {
                if (mVideoView != null) {
                    mVideoView.pause();
                }
            }
        });
        mReset.setOnClickListener(new OnClickListener() {
            public void onClick(View view) {
                if (mVideoView != null) {
                    mVideoView.seekTo(0);
                }
            }
        });
        mStop.setOnClickListener(new OnClickListener() {
            public void onClick(View view) {
                if (mVideoView != null) {
                    current = null;
                    mVideoView.stopPlayback();
                }
            }
        });
        /*runOnUiThread(new Runnable(){
            public void run() {
                sleep(2000);
                playVideo();

            }

        });*/
        Thread _trd1 = new Thread() {
            public void run() {
                try {
                    sleep(2000);
                    runOnUiThread(new Runnable() {


                    public void run() {
                        playVideo();
                    }
                });

                } catch (InterruptedException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                }
            }
        };
        _trd1.start();
    //  new DoBackgroundTask().execute();
    }

    public class DoBackgroundTask extends AsyncTask
    <String, Void, String> {
        @Override
        protected void onPreExecute() {
            // TODO Auto-generated method stub

        }
        protected String doInBackground(String... locationNames) {
            playVideo();
            return null;    
        }

        protected void onPostExecute(String addresses){


            }
        }
    private void playVideo() {
        try {
            final String path = mPath.getText().toString();
            Log.v(TAG, "path: " + path);
            if (path == null || path.length() == 0) {
                Toast.makeText(VideoViewDemo.this, "File URL/path is empty",
                        Toast.LENGTH_LONG).show();

            } else {
                // If the path has not changed, just start the media player
                if (path.equals(current) && mVideoView != null) {
                    mVideoView.start();
                    mVideoView.requestFocus();
                    return;
                }
                current = path;
                mVideoView.setVideoPath(getDataSource("ooklnet.com/files/368/368007/video.mp4"));
                mVideoView.start();
                mVideoView.requestFocus();

            }
        } catch (Exception e) {
            Log.e(TAG, "error: " + e.getMessage(), e);
            if (mVideoView != null) {
                mVideoView.stopPlayback();
            }
        }
    }

    private String getDataSource(String path) throws IOException {
        if (!URLUtil.isNetworkUrl(path)) {
            return path;
        } else {
            URL url = new URL(path);
            URLConnection cn = url.openConnection();
            cn.connect();
            InputStream stream = cn.getInputStream();
            if (stream == null)
                throw new RuntimeException("stream is null");
            File temp = File.createTempFile("mediaplayertmp", "dat");
            temp.deleteOnExit();
            String tempPath = temp.getAbsolutePath(); 
            FileOutputStream out = new FileOutputStream(temp);
            byte buf[] = new byte[128];
            do {
                int numread = stream.read(buf);
                if (numread <= 0)
                    break;
                out.write(buf, 0, numread);
            } while (true);
            try {
                stream.close();
            } catch (IOException ex) {
                Log.e(TAG, "error: " + ex.getMessage(), ex);
            }
            return tempPath;
        }
    }

}


Please advise as soon as possible.
Thanks.
4

2 に答える 2

2

ビデオのエンコーディングに問題がある可能性があります。Android Froyo と Gingerbread は、「ベースライン」H264 以外の H264 形式をサポートしていません。したがって、ビデオが Mp4 および H264 でエンコードされている場合は、 「AVC ベースライン」がエンコードされていることを確認してください。Windows/Linux の「メディア情報」などのツールを使用して、ビデオのエンコードを確認してください。可能であれば、ビデオをベースラインに変換します。

別の回避策は、Videoview をスキップし、ビデオ再生インテントを使用して再生をアプリにリダイレクトすることです。ユーザーは、再生を処理するプレーヤーを選択するよう求められます。明らかに、ビデオ ビューでファイルを再生できない場合、デフォルトのプレーヤーでもファイルを処理できません。ファイルを完全にストリーミングする Mx-Player のような他のインストール済みプレーヤーを選択できます。問題が解決したことを願っています。

于 2013-03-19T06:12:38.677 に答える
1

プロトコルで正しいビデオ URL を試してください:http://www.ooklnet.com/files/368/368007/video.mp4

于 2013-02-21T07:43:47.020 に答える