如何在 android 中使用 .mov 格式的 url 播放在线视频?

how to play online video using uri with .mov formate in android?

Uri videoUri = Uri.parse("https://***");

   try {
        videoLayout.setVideoURI(videoUri);
    } catch (IOException e) {
        e.printStackTrace();
    }

我有一个由 google 开发的媒体播放器,支持所有类型的视频和音频格式,包括 youtube url 并支持 http://https:// 输入 url
这里是 link https://google.github.io/ExoPlayer/