android 录像机,android 录像机

一直都做camera 录像功能其实知道的很少,以前也是迷迷糊糊知道怎么写个video,今天测试了一下,各种问题。问题来源首先是对于SDK的阅读不够仔细。 实践的比较少。 其实所谓的录像 就是两个类的结合 一个是Camera 一个是MediaRecorder 这两个类搞好了,轻松

一直都做camera 录像功能其实知道的很少,以前也是迷迷糊糊知道怎么写个video,今天测试了一下,各种问题。问题来源首先是对于SDK的阅读不够仔细。

实践的比较少。

其实所谓的录像 就是两个类的结合 一个是Camera 一个是MediaRecorder 这两个类搞好了,轻松搞定。我用最简洁的代码完成录制功能。

代码在后面给出下载地址。

如果代码在你的手机上运行有问题,可能有以下几种可能。

1,保存路径那里可能有问题,因为我拿的机子是山寨机。

你可以更改getName()函数来更改你的存储路径。

2,mCamcorderProfile的获取有问题,你可以添加判断,参考

CamcorderProfile的SDK 来获取这个实例。

第一部首先要让camera处于预览状态。

SDK上写的很明显

先给出,如果要往SD卡上录制文件 还需要 另外两个权限

android:name="android.permission.RECORD_AUDIO">

android:name="android.permission.WRITE_EXTERNAL_STORAGE">

在此感谢http://blog.csdn.net/lissdy/article/details/7039332 。为我提供了思路。

To take pictures with this class, use the following steps:

Obtain an instance of Camera from open(int).

Get existing (default) settings with getParameters().

If necessary, modify the returned Camera.Parameters object

and call setParameters(Camera.Parameters).

If desired, call setDisplayOrientation(int).

Important: Pass a fully initialized SurfaceHolder to setPreviewDisplay(SurfaceHolder).

Without a surface, the camera will be unable to start the preview.

Important: Call startPreview() to

start updating the preview surface. Preview must be started before you can take a picture.

上面六条为google SDK 上 进入到预览的过程。

下面开始录制部分的分析

Obtain and initialize a Camera and start preview as described above.

Call unlock() to allow the media process

to access the camera.

Pass the camera to setCamera(Camera).

See MediaRecorder information about video recording.

When finished recording, call reconnect() to

re-acquire and re-lock the camera.

If desired, restart preview and take more photos or videos.

Call stopPreview() and release() as

described above.

一开始我出现了很多问题 在于没有对这段话进行认真的分析。

看第二条 unlock() 这个函数的功能是让通过使用这个函数让别的进程可以访问camera。没有调用的话,会出现以下问题

02-01 10:25:08.251: E/MediaRecorder(5545): start failed: -19 然后start fail了

看一下SDK对于unlock ()的解释

Unlocks the camera to allow another process to access it. Normally, the camera is locked to the process with an active Camera object until release() is called. To allow rapid handoff between processes, you can call this method to release the camera temporarily

for another process to use; once the other process is done you can call reconnect() to reclaim the camera.

释放camera 允许其他进程使用。一般来说,照相机是被锁定到实例化后的Camera对象的,除非release()被调用,为了进程间的快速切换,你可以调用该方法来暂时释放camera,待另一个进程使用完成后你可以通过调用reconnect()方法来收回Camera。

此时便是这个MediaRecorder要使用进程 所以要解锁。

看第三条 setCamera(Camera)

Sets a Camera to use for recording. Use this function to switch quickly between preview and capture mode without a teardown

of the camera object.unlock()should

be called before this. Must call before prepare().

设置一个用于录制的Camera ,使用该方法可以快速在预览和捕捉视频模式间快速切换(不用重新获取一个Camera实例) unlock()必须在这个方法前被调用,而这个方法必须在MediaRecorder.prepare()前调用。

然后便是关于录制设置的了

test.jsp?url=http%3A%2F%2Fimg.my.csdn.net%2Fuploads%2F201304%2F18%2F1366274118_4379.gif&refer=http%3A%2F%2Fblog.csdn.net%2Fshen332401890%2Farticle%2Fdetails%2F8819564

看到没这个图

reset()

setAudioSource()

setVideoSource()

setOutputFormat()

setAudioEncoder()

setVideoEncoder()

setOutputFile()

setVideoSize()

setVideoFrameRate()

setPreviewDisplay()

prepare()

start()//开始录制

stop()//停止录制

这个没什么说的只要你的参数选择正确就OK

下面我要说的是另一个类

因为MediaRecorder中有一个方法

setProfile(CamcorderProfileprofile) Uses

the settings from a CamcorderProfile object for recording.

设置参数用的

但是它都决定哪些参数呢?

看一下SDK对于这个东西的理解

Retrieves the predefined camcorder profile settings for camcorder applications. These settings are read-only.

The compressed output from a recording session with a given CamcorderProfile contains two tracks: one for audio and one for video.

Each profile specifies the following set of parameters:

The file output format

Video codec format

Video bit rate in bits per second

Video frame rate in frames per second

Video frame width and height,

Audio codec format

Audio bit rate in bits per second,

Audio sample rate

Number of audio channels for recording.

那怎么获取这个对象呢 举个简单的例子

CamcorderProfile

mCamcorderProfile = CamcorderProfile.get(CameraInfo.CAMERA_FACING_BACK, CamcorderProfile.QUALITY_LOW);

CamcorderProfile.xxxxx 你可以换成别的对应不同的数据。 但是这里返回的对象可能为空,所以做好其他的处理准备,这里我没有特殊处理。

然后看一下setProfile()这个函数

Uses

the settings from a CamcorderProfile object for recording. This method should be called after the video AND audio sources are set,

and

before setOutputFile(). If a time lapse CamcorderProfile is used, audio related source or recording parameters are ignored.

使用这个类来设置录像的参数,这个方法必须在

setAudioSource() ,setVideoSource() 之后调用,但是必须在setOutPutFile之前调用。如果你需要延时拍照 ,请参看CamCorderProfile这个类的SDK 内容。

然后就开始录制了

setPreviewDisplay()

prepare()

start()//开始录制

结束录制stop方法 这时候请注意 因为你释放了camera 所以你要重新获取

上面录制过程有说明When finished recording, callreconnect()to

re-acquire and re-lock the camera.

关于reconnect()在上面说过了这里就不解释了。

最后记得释放资源 release()

下面就没啥说的了。

源码下载链接

下载代码的链接稍后提供 http://download.csdn.net/detail/shen332401890/5272982

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/349160.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue 圆形百分比进度条_uniapp Vue 圆环进度条

mode"aspectFill">export default {name: ,props: {},data() {return {animationData: {},audioCoverImg: ../../static/player/normal.png,}},created() {this.drawProgressbg()console.log("动画插件 已经onLoad");},mounted() {},methods: {updateIn…

Spring中的异步和事务性事件侦听器

内置的事件发布功能从Spring的早期版本开始存在,对于处理同一应用程序上下文中Spring组件之间的基本通信仍然有用。 通常,应用程序可以生成应用程序事件(可以是任意对象)并侦听它们。 整个机制非常简单:使用Applicatio…

html5 canvas获取坐标,HTML5 canvas坐标

在canvas当中有一个特殊的东西叫做“坐标”!没错,就是平时所熟知的坐标体系。canvas拥有自己的坐标体系,从最上角0, 0开始,X向右是增大,Y向下是增大。也可以借助CSS当中的盒子模型的概念来帮助理解。尽管canvas元素功能…

linux u盘 慢_u盘加载较慢 建议优化 - 卡饭网

U盘加载速度十分缓慢的原因及解决方法U盘加载速度十分缓慢的原因及解决方法 很多朋友在使用U盘的时候都遇到过电脑接入U盘后,加载读取文件的速度十分的缓慢,总是要等上一段时间才能完全读取,这是怎么回事呢?该怎么处理&#xff1f…

Java命令行界面(第21部分):航空公司2

本系列文章的第21篇关于Java中解析命令行参数的文章的重点是Airline 2库。 Airline 2的GitHub项目页面描述了该库,“ Airline是一个Java库,提供了基于注释的框架来解析命令行界面。” 该页面进入状态:航空公司“既支持简单的单个命令&#xf…

android中进度条的使用,android的进度条使用

android的进度条1、实现的效果2、布局代码先写一个my_browser.xml文件 存放WebViewandroid:layout_width"fill_parent"android:layout_height"fill_parent"android:orientation"vertical" >android:id"id/webView"android:layout_w…

taro 重新加载小程序_Taro开发微信小程序的初体验

了解Taro听说Taro是从几个星期前开始的,在一次饭桌上,一个小伙伴说:“Hey, 你听说了Taro么,听说只需要写一套程序就可以生成H5,小程序以及RN的代码模板,并且类似于React的语法。”“哦&#xff…

应用服务器web服务器_最受欢迎的应用服务器

应用服务器web服务器这是本系列的第二篇文章,我们将发布有关Java安装的统计数据。 使用的数据集来自免费的Plumbr安装,在过去六个月中,我们总共收集了1,024个不同的环境。 该系列的第一篇文章分析了基础-运行JVM的操作系统,是32位…

python 类中定义列表_Python-从类定义中的列表理解访问类变量

小编典典类范围和列表,集合或字典的理解以及生成器表达式不混合。为什么;或者,官方用词在Python 3中,为列表理解赋予了它们自己的适当范围(本地名称空间),以防止其局部变量渗入周围的范围内(即使在理解范围之后&#x…

mvc html 生成图片,asp.net mvc5 cs代码中获取视图生成后的HTML

public static class ViewExtensions { /// /// 在控制器内获取指定视图生成后的HTML /// /// 当前控制器的上下文 /// 视图名称 /// 视图所需要的参数 /// 视图生成的HTML public static string GetViewHtml(this ControllerContext context, string viewName, Object param) …

如何在Java 8中将Lambda表达式转换为方法引用?

如果您使用Java 8进行编码,那么您会知道使用方法引用代替lambda表达式会使您的代码更具可读性,因此建议尽可能使用方法引用替换lambda表达式,但是,最大的问题是,您如何查找是否可以用方法引用替换lambda? 是…

最大化窗口设置_打开表格总是默认窗口最小化?适用Word、PPT等其他应用

今天有小哥哥说每天早上上班打开第一个表格时,这样显示;打开第二个表时是这样显示;每次打开第二个表后点最大化再打开其他的表才正常显示为最大化的状态。其实,这只是表格的默认打开方式改变了,我们改正过来就好了。在…

html5块元素代码,html5 区块与内联div 与span html块级元素(示例代码)

HTML 和 可以通过 和 将 HTML 元素组合起来。HTML 块元素大多数 HTML 元素被定义为块级元素或内联元素。编者注:"块级元素"译为 block level element,"内联元素"译为 inline element。块级元素在浏览器显示时,通常会以新…

js 加总数组中某一列_JS数组求和的常用方法实例小结

本文实例总结了JS数组求和的常用方法。分享给大家供大家参考&#xff0c;具体如下&#xff1a;js数组求和的方法var array [1, 2, 3, 4, 5];var sum 0;1.for循环for (let i 0; i < array.length; i) {sum array[i];}console.log(sum)运行结果sum为 15&#xff0c;如下图…

html页面js遍历listview,javascript实现的listview效果

javascript实现的listview效果更新时间&#xff1a;2007年04月28日 00:00:00 作者&#xff1a;#oContainer {width: 600px;height: 500px;border: 1px solid menu;margin: 0px;padding: 0px;overflow: hidden;}a {color: black;text-decoration: none;}a:hover {color: red;t…

华南x79主板u盘装系统教程_华南x99主板装win7系统及BIOS设置教程

[文章导读]最近有小伙伴问我华南x99主板能装win7吗&#xff1f;华南x99主板可以安装win7&#xff0c;但安装win7过程中有很多问题&#xff0c;要采用win7新机型安装&#xff0c;且要在BIOS中关闭“安全启动”和开启"兼容模式"选择&#xff0c;如果是NVME接口的固态硬…

html按钮返回上一步操作,用js实现返回上一步操作

按钮式&#xff1a;onClick"location.hrefhttp://www.ddhbb.com/">链接式&#xff1a;href"javascript:history.go(-1)">返回上一步href"">返回上一步直接跳转式&#xff1a;开新窗口&#xff1a;onClick"window.open(http://www.…

Apache Ignite本机持久性,简要概述

通过将数据的工作集放入系统内存中&#xff0c;内存中方法可以达到极高的速度。 当所有数据都保存在内存中后&#xff0c;处理使用传统旋转磁盘引起的问题的需求就消失了。 例如&#xff0c;这意味着无需维护数据的其他缓存副本并管理它们之间的同步。 但是这种方法还有一个缺点…

cheetah的中文_cheetah是什么意思_cheetah的翻译_音标_读音_用法_例句_爱词霸在线词典...

全部非洲猎豹One economist talks hopefully of the " cheetah generation " taking over from the " hippos ".有一位经济学者满怀希望地讲道,肯尼亚的年轻人是征服了 “ 河马一族 ” 的 “ 猎豹一代 ”.期刊摘选The fastest animal on land is the cheet…

计算机减法英语,英语加减乘除的表达

1. 加: “一加二等于三”可以这样表达One plus two is three.One plus two makes three.One plus two equals three.One and two are three.One and two make three.One and two equal three.2. 减: “八减四等于四” 可以这样表达Eight minus four is four.Eight minus four m…