如何在Android中播放视频文件?

时间:2011-05-18 05:25:05

标签: android video playback

我将视频MP4放到了我的域名空间。我有它的公共URL,现在我想在我的Android应用程序中播放它;但不知道我怎么能这样做。我使用了以下无效的代码。轨道控制器正在移动,但我在屏幕上看不到任何视频。

public class MPlayer extends Activity{
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.playvideo);
    VideoView videoView = new VideoView(MPlayer.this);
    videoView.setMediaController(new MediaController(this));
    videoView.setVideoURI(Uri.parse("http://www.semanticdevlab.com/abc.mp4"));
    videoView.requestFocus();
    videoView.start();
    LinearLayout l = (LinearLayout)findViewById(R.id.mplayer);
    l.addView(videoView);
}
}

7 个答案:

答案 0 :(得分:14)

VideoView类可以从各种来源(例如资源或内容提供商)加载图像,负责从视频计算其测量值,以便可以在任何布局管理器中使用,并提供各种显示选项,如缩放和着色。

代码:

videoView = (VideoView)findViewById(R.id.ViewVideo);
videoView.setVideoURI(Uri.parse(“android.resource://” + getPackageName() +”/”+R.raw.video));
videoView.setMediaController(new MediaController(this));
videoView.requestFocus();
videoView.start();

如果您想查看源代码: Play video file using VideoView in Android

答案 1 :(得分:7)

大多数时候,我使用以下代码:

MediaPlayer mp = new MediaPlayer();
    mp.setDataSource(PATH_TO_FILE);
    mp.prepare();
    mp.start();

有关详细信息,请查看此页面:http://developer.android.com/guide/topics/media/index.htmlhttp://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/media/MediaPlayerDemo_Video.html

答案 2 :(得分:6)

我认为这可以帮助您找到解决方案。

mp=new MediaPlayer();                    
mp.setDataSource(path);
mp.setScreenOnWhilePlaying(true);
mp.setDisplay(holder);
mp.prepare();
mp.start();

答案 3 :(得分:3)

如果您在模拟器中尝试此操作,则可能必须在真实设备中尝试此操作,因为有时我也会使用相同的问题。我将无法在模拟器中查看视频,但视频将在移动设备中播放没有任何问题。问题是,我认为使用模拟器,而不是使用您的代码。

答案 4 :(得分:1)

您可以使用此库名称MagicalExoPlayer

它基于Google视频播放器(ExoPlayer),非常易于使用。

enter image description here

答案 5 :(得分:0)

您应该在onResume中执行此操作,因为在onCreate VideoView中不知道其大小,并且无法正确创建表面以显示视频。

public class MPlayer extends Activity{

VideoView videoView;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.playvideo);
    videoView = new VideoView(MPlayer.this);
    videoView.setMediaController(new MediaController(this));
    LinearLayout l = (LinearLayout)findViewById(R.id.mplayer);
    l.addView(videoView);
   }

    @Override
    protected void onResume() {
        super.onResume();
videoView.setVideoURI(Uri.parse("http://www.semanticdevlab.com/abc.mp4"));
        videoView.start();
}

答案 6 :(得分:0)

这就是我在项目中播放来自网络的视频文件的方式

必需的Kotlin,AndroidX

文件正在缓冲时显示加载对话框,然后开始播放:

private fun playVideo(videopath: String) {
    Log.e("Playing Video File: ", "" + videopath);
    try {
        //Show Loader
        val builder: AlertDialog.Builder = AlertDialog.Builder(this@ScreenCaptureImageActivity);
        builder.setCancelable(false); // if you want user to wait for some process to finish,
        builder.setView(R.layout.layout_loading_dialog);
        progressDialog = builder.create();

        //add Controller
        val mediaController = MediaController(this@ScreenCaptureImageActivity);
        videoView.setMediaController(mediaController)
        //Add URI

        //Uncomment to play from local path
        //videoView.setVideoURI(Uri.parse(videopath))

        //Example Play from Internet
        videoView.setVideoPath("http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4")

        videoView.setOnPreparedListener {
            progressDialog!!.dismiss();
            //Start Playback
            videoView.start()
            Log.e(TAG, "Video Started");
        }
    } catch (e: Exception) {
        progressDialog!!.dismiss();
       Log.e(TAG, "Video Play Error :" + e.localizedMessage);
    }
}

加载程序XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="20dp">
    <ProgressBar
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="4"
        android:gravity="center"
        android:text="Please wait! This may take a moment." />
</LinearLayout>

**对于网络访问,请从ANdroid P中在清单中添加网络配置,****

 <application
        ...
        android:networkSecurityConfig="@xml/network_security_config"
        >

在res / xml中添加network_security_config.xml

<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
    <base-config cleartextTrafficPermitted="true">
        <trust-anchors>
            <certificates src="system" />
        </trust-anchors>
    </base-config>
</network-security-config>

enter image description here