49. Android 多媒体技术——MediaPlayer播放视频
49.1 MediaPlayer播放视频
MediaPlayer类简介:
媒体框架最重要的组成部分之一,此类的对象能够获取、解码以及播放音频和视频,而且只需极少量的设置。
它支持多种不同的媒体源:
本地资源
内部URL
外部网址
支持的媒体格式
https://developer.android.google.cn/guide/topics/media/media-formats
创建跳转新的Activity进行播放。
设置第二个按钮的点击事件。
VideoActivity布局
和录制视频一样。
MediaPlayer的使用
调用
package com.dingjiaxiong.mymediarecorder;
import androidx.appcompat.app.AppCompatActivity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.Surface;
import android.view.TextureView;
import android.view.View;
import android.widget.Button;
import java.io.File;
import java.io.IOException;
public class VideoActivity extends AppCompatActivity implements View.OnClickListener, MediaPlayer.OnPreparedListener, MediaPlayer.OnCompletionListener {
private TextureView textureView;
private Button btn_opt;
private MediaPlayer mediaPlayer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video);
textureView = findViewById(R.id.textureView);
btn_opt = findViewById(R.id.btn_opt);
btn_opt.setOnClickListener(this);
}
@Override
public void onClick(View v) {
CharSequence text = btn_opt.getText();
if (TextUtils.equals(text, "开始")) {
btn_opt.setText("结束");
mediaPlayer = new MediaPlayer();
//设置准备监听
mediaPlayer.setOnPreparedListener(this);
// 设置播放完成监听
mediaPlayer.setOnCompletionListener(this);
//指定视频源
try {
mediaPlayer.setDataSource(new File(getExternalFilesDir(""), "a.mp4").getAbsolutePath());
} catch (IOException e) {
e.printStackTrace();
}
//设置画布
mediaPlayer.setSurface(new Surface(textureView.getSurfaceTexture())) ;
mediaPlayer.prepareAsync();
}else {
btn_opt.setText("开始");
mediaPlayer.stop();
mediaPlayer.release(); // 结束
}
}
@Override
public void onPrepared(MediaPlayer mp) {
mediaPlayer.start();
}
@Override
public void onCompletion(MediaPlayer mp) {
btn_opt.setText("开始");
mediaPlayer.release(); // 结束
}
}
运行
成功,其实是有声音的,这里放GIF,就不方便演示了。
49.2 VideoView的使用
新建一个Activity
修改跳转
布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".VideoViewActivity">
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
调用
package com.dingjiaxiong.mymediarecorder;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.MediaController;
import android.widget.VideoView;
import java.io.File;
public class VideoViewActivity extends AppCompatActivity implements View.OnClickListener {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_video_view);
VideoView videoView = findViewById(R.id.videoView);
MediaController mediaController = new MediaController(this);
mediaController.setPrevNextListeners(this,this);
videoView.setMediaController(mediaController);
videoView.setVideoPath(new File(getExternalFilesDir(""), "a.mp4").getAbsolutePath());
videoView.start();
}
@Override
public void onClick(View v) {
Log.i("VideoView", "onClick:========== ");
}
}
运行
OK
标签:opt,49,MediaPlayer,mediaPlayer,import,Android,btn,android From: https://www.cnblogs.com/55zjc/p/16709776.html