Android:同时视频播放和录制
我正在为 Android 开发一个类似视频聊天的应用程序。我可以同时在屏幕上录制和播放视频吗?我可以将视频相互合成(FaceTime 风格)还是必须并排放置?我可以使用 MediaPlayer 和 MediaRecorder 类还是必须使用较低级别的 API?
I'm developing a video chat like application for Android. Can I record and play video on the screen at the same time? Can I compose the videos over one another (FaceTime style) or do the y have to be side by side? Can I use the MediaPlayer and MediaRecorder classes or do I have to use lower level APIs?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Avner,
按位回答你的问题
1>我可以同时在屏幕上录制和播放视频吗?
答:是的,可以。
2>我可以将视频相互合成(FaceTime 风格)还是必须并排放置?
答:您不能使用 PIP(画中画)(http://stackoverflow.com/questions/4521674/handling-two-surfaceviews),
您可以选择并排选项。
3>我可以使用 MediaPlayer 和 MediaRecorder 类还是必须使用较低级别的 API?
答:是的,你可以使用这些。
Avner,
To answer to your question bit wise
1> Can I record and play video on the screen at the same time?
Ans : yes you can.
2> Can I compose the videos over one another (FaceTime style) or do the y have to be side by side?
Ans: You can not have PIP(Picture in picture) (http://stackoverflow.com/questions/4521674/handling-two-surfaceviews)
you can go for a side by side option.
3> Can I use the MediaPlayer and MediaRecorder classes or do I have to use lower level APIs?
ans: yes you can use these.