- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
从 android 5.0 开始,他们提供了 mediaprojection 库来捕获屏幕内容。但他们提供的示例演示应用程序不清楚。你可以找到示例应用程序 here .在该应用程序中,他们使用虚拟显示方法投影捕获的屏幕
private void setUpVirtualDisplay() {
Log.i(TAG, "Setting up a VirtualDisplay: " +
mSurfaceView.getWidth() + "x" + mSurfaceView.getHeight() +
" (" + mScreenDensity + ")");
mVirtualDisplay = mMediaProjection.createVirtualDisplay("ScreenCapture",
mSurfaceView.getWidth(), mSurfaceView.getHeight(), mScreenDensity,
DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR,
mSurface, null, null);
mButtonToggle.setText(R.string.stop);
}
我想将捕获的屏幕转换为 mp4 文件以用于我的屏幕录制应用程序。请帮助我度过难关。
最佳答案
这里是示例代码引用from
public class MainActivity extends AppCompatActivity {
private static final String TAG = "MainActivity";
private static final int PERMISSION_CODE = 1;
private int mScreenDensity;
private MediaProjectionManager mProjectionManager;
private static final int DISPLAY_WIDTH = 480;
private static final int DISPLAY_HEIGHT = 640;
private MediaProjection mMediaProjection;
private VirtualDisplay mVirtualDisplay;
private MediaProjectionCallback mMediaProjectionCallback;
private ToggleButton mToggleButton;
private MediaRecorder mMediaRecorder;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(metrics);
mScreenDensity = metrics.densityDpi;
mMediaRecorder = new MediaRecorder();
initRecorder();
prepareRecorder();
mProjectionManager = (MediaProjectionManager) getSystemService
(Context.MEDIA_PROJECTION_SERVICE);
mToggleButton = (ToggleButton) findViewById(R.id.toggle);
mToggleButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onToggleScreenShare(v);
}
});
mMediaProjectionCallback = new MediaProjectionCallback();
}
@Override
public void onDestroy() {
super.onDestroy();
if (mMediaProjection != null) {
mMediaProjection.stop();
mMediaProjection = null;
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode != PERMISSION_CODE) {
Log.e(TAG, "Unknown request code: " + requestCode);
return;
}
if (resultCode != RESULT_OK) {
Toast.makeText(this,
"Screen Cast Permission Denied", Toast.LENGTH_SHORT).show();
mToggleButton.setChecked(false);
return;
}
mMediaProjection = mProjectionManager.getMediaProjection(resultCode, data);
mMediaProjection.registerCallback(mMediaProjectionCallback, null);
mVirtualDisplay = createVirtualDisplay();
mMediaRecorder.start();
}
public void onToggleScreenShare(View view) {
if (((ToggleButton) view).isChecked()) {
shareScreen();
} else {
mMediaRecorder.stop();
mMediaRecorder.reset();
Log.v(TAG, "Recording Stopped");
stopScreenSharing();
initRecorder();
prepareRecorder();
}
}
private void shareScreen() {
if (mMediaProjection == null) {
startActivityForResult(mProjectionManager.createScreenCaptureIntent(), PERMISSION_CODE);
return;
}
mVirtualDisplay = createVirtualDisplay();
mMediaRecorder.start();
}
private void stopScreenSharing() {
if (mVirtualDisplay == null) {
return;
}
mVirtualDisplay.release();
//mMediaRecorder.release();
}
private VirtualDisplay createVirtualDisplay() {
return mMediaProjection.createVirtualDisplay("MainActivity",
DISPLAY_WIDTH, DISPLAY_HEIGHT, mScreenDensity,
DisplayManager.VIRTUAL_DISPLAY_FLAG_AUTO_MIRROR,
mMediaRecorder.getSurface(), null /*Callbacks*/, null /*Handler*/);
}
private class MediaProjectionCallback extends MediaProjection.Callback {
@Override
public void onStop() {
if (mToggleButton.isChecked()) {
mToggleButton.setChecked(false);
mMediaRecorder.stop();
mMediaRecorder.reset();
Log.v(TAG, "Recording Stopped");
initRecorder();
prepareRecorder();
}
mMediaProjection = null;
stopScreenSharing();
Log.i(TAG, "MediaProjection Stopped");
}
}
private void prepareRecorder() {
try {
mMediaRecorder.prepare();
} catch (IllegalStateException e) {
e.printStackTrace();
finish();
} catch (IOException e) {
e.printStackTrace();
finish();
}
}
private void initRecorder() {
mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mMediaRecorder.setVideoSource(MediaRecorder.VideoSource.SURFACE);
mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mMediaRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.H264);
mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mMediaRecorder.setVideoEncodingBitRate(512 * 1000);
mMediaRecorder.setVideoFrameRate(30);
mMediaRecorder.setVideoSize(DISPLAY_WIDTH, DISPLAY_HEIGHT);
mMediaRecorder.setOutputFile("/sdcard/capture.mp4");
}
}
关于android - 如何在android中使用Mediaprojection库捕获屏幕并转换为mp4文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29501618/
我设法得到截图,但结果是这样的: 原来的: 这是我从几个来源获取的代码: final ImageReader ir = ImageReader.newInstance(width, height, P
我目前使用的是 Android 5.0 MediaProjection API。我已经成功地能够从我的应用程序启动投影 session ,但是我注意到用户可以随时转到通知栏并停止媒体投影。我的目标是捕
我正在使用 MediaProjection 录制我的屏幕如下 Display display = getWindowManager().getDefaultDisplay(); Point size
与 MediaProjection Android L 中可用的 API capture the contents of the main screen (the default display) i
我正在使用 MediaProjection 截取屏幕截图。这就是我正在做的。我使用服务创建了一个覆盖图标。单击覆盖图标会截取屏幕截图。问题是,无论何时通过按后退按钮终止应用程序或通过滑动它手动丢失 M
在对这个主题进行了大量研究之后,虽然我找到了一些答案,但我无法理解 MediaProjection API 的工作原理。 我想从后台服务类中获取设备的屏幕截图。有没有可能做到。我有一个 MainAct
我正在使用以下代码获取屏幕截图。我得到了屏幕截图,但图像上附有黑色填充。这里使用网上找到的截图和去除填充的代码示例: // requesting permission MediaPro
我正在使用 MediaProjection API 创建一个屏幕录像机应用程序。在我的应用程序中,我将停止按钮显示为一个小的覆盖窗口。我已将此 View 保持为安全状态,因此它不会出现在最终录制的视频
随着 Android Q 生效的新隐私变更,现在任何使用 MediaProjection API 的应用都必须指定 android:foregroundServiceType list 下服务标记中的
我正在尝试查找有关与受 DRM 保护的内容和 MediaProjection API 的兼容性的信息。 具体来说,我想知道我是否可以从 Netflix 或其他实现 DRM 保护的应用程序录制视频? 最
我在想出有效的解决方案时遇到了一些麻烦。我预见到一些问题,第一个是...... OOM 预防 如果我想要过去 30 秒甚至 5 分钟,这是可行的,但如果我想要过去 30 分钟或整整一个小时,或者可能是
我正在开发一个需要将屏幕捕获到位图以进行传输的应用程序。我正在尝试使用新的 Android 5.0 android.media.projection APIs进行屏幕捕获。 此 API 的工作流以调用
我仍然是 Android APP 开发的初学者,我正在尝试使用 Mediaprojection API 来录制我的屏幕..我现在面临的问题是..录制后我无法在定义的位置找到视频文件(sdcard/ca
拜托,我想知道如何使用 Android 的 MediaProjection API 来录制在 Android 设备中输出的系统声音?我要录制的系统声音是从某些用户应用程序、扬声器或耳机中从 Andro
我是一名优秀的程序员,十分优秀!