0

ビデオをライブストリーミングするアプリケーションを1つ開発しましたが、Androidバージョン2.2、2.3などをサポートしていません。Androidバージョン4.1(Samsung Galaxy Grand)でのみビデオを再生します。プロジェクトでビデオビューを使用しています。では、正確な理由を教えていただけないでしょうか。私のコードは次のとおりです。

mPath.setText("http://iptvshqip.dyndns.tv:8090");       
    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() {
            playVideo();
        }
    });
  }
 private void playVideo() {
    try {
        final String path = mPath.getText().toString();
        Log.v(TAG, "path: " + path);
        if (path == null || path.length() == 0) {
            Toast.makeText(MainActivity.this, "File URL/path is empty",
                    Toast.LENGTH_LONG).show();
        } 
        else {
            if (path.equals(current) && mVideoView != null) {
                mVideoView.start();
                mVideoView.requestFocus();
                return;
            }
            current = path;
            mVideoView.setVideoPath(getDataSource(path));
            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;
    }
}
4

2 に答える 2

0

Android は 3.0 から HTTP Live Stream(HLS) のサポートを開始しました。次のリンクをお読みください。

http://www.longtailvideo.com/blog/31646/the-pain-of-live-streaming-on-android/

彼らは回避策を説明しました。

于 2013-07-03T10:38:21.547 に答える
0

前述のとおり、AndroidVideoViewは API レベル 1 から存在しています。

を除外する:

  • フラグSTATUS_BAR_HIDDENSTATUS_BAR_VISIBLE- API 14 で非推奨
  • setBackgroundDrawable(Drawable background)API 16 で廃止された関数
  • Public Methods - canPause()canSeekBackward()およびcanSeekForward()API 5 で追加
  • resume()suspend()API 8で 追加されました
  • onInitializeAccessibilityEvent (AccessibilityEvent event)onInitializeAccessibilityNodeInfo (AccessibilityNodeInfo info)API 14で追加
  • setOnInfoListener (MediaPlayer.OnInfoListener l)API 17 で追加

これらのいずれかを使用しますか? とにかくあなたの問題は他の場所にあるかもしれません。

いくつかのコードを貼り付けて、これがどのように機能しないかを詳しく説明してください。

于 2013-07-03T10:38:23.180 に答える