手机mic是什么出现primary mic怎么办

君,已阅读到文档的结尾了呢~~
(MIC)手机结构部标准设计说明
扫扫二维码,随身浏览文档
手机或平板扫扫即可继续访问
(MIC)手机结构部标准设计说明
举报该文档为侵权文档。
举报该文档含有违规或不良信息。
反馈该文档无法正常浏览。
举报该文档为重复文档。
推荐理由:
将文档分享至:
分享完整地址
文档地址:
粘贴到BBS或博客
flash地址:
支持嵌入FLASH地址的网站使用
html代码:
&embed src='/DocinViewer-4.swf' width='100%' height='600' type=application/x-shockwave-flash ALLOWFULLSCREEN='true' ALLOWSCRIPTACCESS='always'&&/embed&
450px*300px480px*400px650px*490px
支持嵌入HTML代码的网站使用
您的内容已经提交成功
您所提交的内容需要审核后才能发布,请您等待!
3秒自动关闭窗口后使用快捷导航没有帐号?
只需一步,快速开始
查看: 5|回复: 5
在线时间0 小时经验值207 最后登录注册时间帖子阅读权限50UID
大学专科, 积分 207, 距离下一级还需 193 积分
TA的每日心情开心 08:25签到天数: 18 天[LV.4]偶尔看看III
G币7 最后登录注册时间
马上注册,结交更多机友,下载更多应用,让你轻松玩转手机。
已有帐号?   下载游戏和软件,请【】进入机锋市场!
本帖最后由 lxyzqlxy 于
23:53 编辑
January 20, 2015: fourth release of a fix that enables camcorder recording
in &stereo& including stereo playback on Hammerhead running Android &= 5.0.0.
Credits for the original discovery of enabling the earpiece speaker goes to
XDA member dontbelive. Dual-loudspeaker support was first implemented on
Nexus 5 by XDA member daniel84cs, though it only supported dual-mono playback
I &unlocked& true stereo.
Stereo audio recording requires the phone to be held in a certain way to align
the video with the audio image. The currently supplied mixer_paths.xml option assumes that
the USB port points to the right when holding the phone in landscape.
It is relatively easy to make modifications to the mixer file to swap the channels.
The same geometry is assumed for stereo playback: The eapiece plays the left channel while the
main loudspeaker plays the right channel.
CHANGELOG:
- modified audio HAL (audio.primary.msm8974.so) such that it now uses a
different &acdb id&. In previous versions of this mod, the CAMCORDER device
used acdb id=62 (SND_DEVICE_IN_VOICE_REC_MIC). Now it uses
acdb id=ACDB_ID_VOICE_DMIC_EF_TMUS (89). The reasoning is that almost all
other devices use an acdb id which results in a high-pass filter to be
applied inside (?) the codec, which I believe causes low-frequency distortion.
Also, microphone level calculations were biased (de-sensitized toward low
frequencies). Hence, it was impossible to predict when low-frequency
distortion was ocurring. Both issues seem to be fixed now.
- the audioflinger service now reports true RMS microphone levels
(200ms average and peak values)
- mixer_paths.xml now includes a highpass filter with a 150 Hz cutoff
in the &speaker& path. The idea is to filter out low-frequency signals
that the small speakers are not able to reproduce anyway, hence make
them work &less hard&.
- aMGC now comes bundled with this archive. See separate README in the
aMGC subfolder
Permission is granted to use and distribute these files at will.
===================================================
STEP 1: Backup all relevant files via TWRP recovery
===================================================
Option 1: backup entire system partition
----------------------------------------
Option 2: backup only affected files via adb
--------------------------------------------
On your PC:
adb pull /system/etc/media_profiles.xml PATH_TO_BACKUP_DIR
adb pull /system/etc/mixer_paths.xml PATH_TO_BACKUP_DIR
adb pull /system/lib/hw/audio.primary.msm8974.so PATH_TO_BACKUP_DIR
adb pull /system/lib/libaudioflinger.so PATH_TO_BACKUP_DIR
adb pull /system/lib/soundfx/libaudiopreprocessing.so PATH_TO_BACKUP_DIR
adb pull /system/vendor/etc/audio_effects.conf PATH_TO_BACKUP_DIR
=====================================================
STEP 2: Boot into TWRP and mount the system partition
=====================================================
========================================================================
STEP 3: Use adb to gain an Android shell to remount system partition R/W
========================================================================
On your PC:
Then, from the Android shell, make system partition writeable
mount -w -o remount /system
========================================================================
STEP 4: On your PC use adb to push the desired files and fix permissions
========================================================================
# media_profiles.xml (increases audio bitrate from 96 kbps to 288 kbps, and enables stereo recording):
adb push PATH_TO_MOD_FILES/media_profiles.xml /system/etc/
adb shell chmod 644 /system/etc/media_profiles.xml
# mixer_paths_*.xml (defines audio path for the modified camcorder, shutter button to the right)
# monoRecording/monoPlayback stereoRecording/monoPlayback
# monoRecording/stereoPlayback stereoRecording/stereoPlayback
adb push PATH_TO_MOD_FILES/mixer_paths/mixer_paths_YOURFAVORITE.xml /system/etc/mixer_paths.xml
adb shell chmod 644 /system/etc/mixer_paths.xml
# audio.primary.msm8974.so (forces a different audio path for use with
#& && && && && && && && && &camcorder)
adb push PATH_TO_MOD_FILES/audio.primary.msm8974.so /system/lib/hw/
adb shell chmod 644 /system/lib/hw/audio.primary.msm8974.so
# |||&&required for the &simple& mod without any noise suppression and without aMGC support
#& && &(you can stop here if the white noise present in the recording is
#& && &acceptable to you and you are not interested in the aMGC feature)
# -----------------------------------------------------------------------
# ... following files are required for the &advanced& mod with moderate
#& &&&noise suppression and aMGC support
# audio_effects.conf (enables the webRTC noise suppressor)
adb push PATH_TO_MOD_FILES/audio_effects.conf /system/vendor/etc/& &
adb shell chmod 644 /system/vendor/etc/audio_effects.conf
# libaudioflinger.so (contains changes required to pass audio data
#& && && && && && && &to the noise suppressor)
adb push PATH_TO_MOD_FILES/libaudioflinger.so /system/lib/& &
adb shell chmod 644 /system/lib/libaudioflinger.so
# libaudiopreprocessing.so (improves resampling quality and defines desired
#& && && && && && && && && &noise suppression level 6/12 dB)
adb push PATH_TO_MOD_FILES/libaudiopreprocessing.so.6dB
/system/lib/soundfx/libaudiopreprocessing.so& &
adb shell chmod 644 /system/lib/soundfx/libaudiopreprocessing.so
OR (depending whether you prefer 6dB or 12 dB of noise suppression)
adb push PATH_TO_MOD_FILES/libaudiopreprocessing.so.12dB
/system/lib/soundfx/libaudiopreprocessing.so
adb shell chmod 644 /system/lib/soundfx/libaudiopreprocessing.so
======================================
STEP 6: Required only for aMGC support
======================================
A binary called &tinymix& is also provided with is part of AOSP but not
provided by default. tinymix is a user-space kernel interface to the mixer
of the audio codec used by the Nexus 5, i.e. the Qualcomm WCD9320. With this
binary, the mixer can be manipulated (gains, audio paths/switches, etc)
in real-time. It is particularly useful for optimizing the left-right
loudspeaker balance for your device, see
http://forum./showpost.php?p=&postcount=71
for more details
This binary is required for aMGC support
adb push PATH_TO_MOD_FILES/tinymix /system/bin/
adb shell chmod 744 /system/bin/tinymix
=========================
STEP 7: Reboot your phone
=========================
Enjoy!& & 谢谢各位的回复,已经手动安装成功。
在线时间0 小时经验值207 最后登录注册时间帖子阅读权限50UID
大学专科, 积分 207, 距离下一级还需 193 积分
TA的每日心情开心 08:25签到天数: 18 天[LV.4]偶尔看看III
G币7 最后登录注册时间
这是补丁文件。
在线时间45 小时经验值1417 最后登录注册时间帖子阅读权限80UID
研究生, 积分 1417, 距离下一级还需 283 积分
TA的每日心情擦汗 08:25签到天数: 277 天[LV.8]以坛为家I
G币2144 最后登录注册时间
你可以了解一下adb的命令
这里面用到的
都是最常用的,了解一下就基本能明白。
adb开头的都是在系统的命令行窗口下完成,mount这种是进入adb shell以后运行
这么说吧,运行adb什么什么什么,都是在系统的命令行窗口
不是adb开头的先运行adb shell,进入shell窗口以后再运行
退出就用exit
在线时间0 小时经验值207 最后登录注册时间帖子阅读权限50UID
大学专科, 积分 207, 距离下一级还需 193 积分
TA的每日心情开心 08:25签到天数: 18 天[LV.4]偶尔看看III
G币7 最后登录注册时间
michael185 发表于
你可以了解一下adb的命令
这里面用到的
谢谢兄弟的回答。
在线时间0 小时经验值695 最后登录注册时间帖子阅读权限60UID
大学本科, 积分 695, 距离下一级还需 5 积分
TA的每日心情奋斗 19:15签到天数: 84 天[LV.6]常住居民II
G币479 最后登录注册时间
lxyzqlxy 发表于
这是补丁文件。
日:一个修复的第四个版本,使摄像机记录
在“立体声”包括锤头立体声播放运行Android& = 5.0.0。
币用于使听筒扬声器的最初发现进到
XDA成员dontbelive。双扬声器支持首次实施了
的Nexus 5由XDA成员daniel84cs,虽然它仅支持双单声道播放
I“解锁”真正的立体声。
立体声音频记录需要被以一定的方式来对齐保持的电话
与音频图像的视频。目前提供的mixer_paths.xml选项假定
拿着USB端口指向权当景观的手机。
这是比较容易进行修改到混合器文件交换的信道。
相同的几何假设立体声回放:eapiece播放左声道,而
主扬声器播放右声道。
更新日志:
- 修改的音频HAL(audio.primary.msm8974.so),使得它现在使用一个
不同的“ACDB ID”。在这个mod以前的版本,摄像机装置
二手ACDB ID = 62(SND_DEVICE_IN_VOICE_REC_MIC)。现在,它使用
ACDB ID = ACDB_ID_VOICE_DMIC_EF_TMUS(89)。其理由是,几乎所有的
其他设备使用ACDB ID这导致一个高通滤波器是
里面的应用(?)的编解码器,我相信会导致低频失真。
此外,麦克风电平的计算是有偏见的(去敏对低
频率)。因此,这是不可能预测何时低频
失真是ocurring。这两个问题似乎现在是固定的。
- 在audioflinger服务现在报告的真有效值麦克风水平
(200ms的平均值和峰值)
-&&mixer_paths.xml现在包括一个高通滤波器,一个150赫的截止
在“扬声器”路径。这样做是为了滤除低频信号
该小喇叭不能反正重现,从而使
他们的工作“不太严重”。
-&&aMGC现在捆绑了此存档。请参阅单独README
aMGC子文件夹
被授权使用和随意分发这些文件。
================================================== =
STEP 1:通过TWRP恢复备份的所有相关文件
================================================== =
选项1:备份整个系统分区
----------------------------------------
选项2:通过亚行只备份受影响的文件
--------------------------------------------
在您的PC:
亚行拉/system/etc/media_profiles.xml PATH_TO_BACKUP_DIR
亚行拉/system/etc/mixer_paths.xml PATH_TO_BACKUP_DIR
亚行拉/system/lib/hw/audio.primary.msm8974.so PATH_TO_BACKUP_DIR
亚行拉/system/lib/libaudioflinger.so PATH_TO_BACKUP_DIR
亚行拉/system/lib/soundfx/libaudiopreprocessing.so PATH_TO_BACKUP_DIR
亚行拉/system/vendor/etc/audio_effects.conf PATH_TO_BACKUP_DIR
================================================== ===
STEP 2:开机进入TWRP并安装系统分区
================================================== ===
================================================== ======================
STEP 3:用亚行获得一个Android外壳重新安装系统分区R / W
================================================== ======================
在您的PC:
然后,从Android的外壳,使系统分区写入
安装-w -o重新挂载/系统
================================================== ======================
第4步:在您的PC使用亚行推动所需的文件和修复权限
================================================== ======================
#media_profiles.xml(增加音频比特率从96 kbps到288 kbps的,并支持立体声录音):
亚行推PATH_TO_MOD_FILES / media_profiles.xml /系统的/ etc /
亚行外壳CHMOD 644 /system/etc/media_profiles.xml
#mixer_paths _ *。xml的(定义音频路径修改摄像机,快门按钮向右)
#monoRecording / monoPlayback stereoRecording / monoPlayback
#monoRecording / stereoPlayback stereoRecording / stereoPlayback
亚行推动PATH_TO_MOD_FILES / mixer_paths / mixer_paths_YOURFAVORITE.xml /系统的/ etc / mixer_paths
在线时间1 小时经验值477 最后登录注册时间帖子阅读权限60UID
大学本科, 积分 477, 距离下一级还需 223 积分
TA的每日心情擦汗 09:15签到天数: 202 天[LV.7]常住居民III
G币598 最后登录注册时间
不用外放路过
Powered by发帖人是女婴父亲,刚以难民身份进入德国。
经过铁路菜市的火车速度很慢,很远就要鸣笛示意。
声明:本文由入驻搜狐公众平台的作者撰写,除搜狐官方账号外,观点仅代表作者本人,不代表搜狐立场。
  点击上方“新疆国美”关注我们
  玩了这么久手机
  大家有没有发现
  手机上都会有1~2个细细的小孔
  有些在手机上部
  有些在底部
  这些小孔是干嘛的呢
  用来散热么
  还是摄像头来的呢
  甚至有人觉得这个设计没用
  下面就带大家看看
  这个不起眼的小孔到底是干嘛的
  双麦克风降噪
  现在大多数智能手机都有两个麦克风,其中的主麦克风一般都会设置在手机底端。这是为了通电话的时候收录声音。当然,周边的杂音也会被一起录入,通过电波数据发送到出去,通话质量当然就是嘈杂不堪的了。
  而辅助麦克风是干嘛的,又在哪里呢?其实啊, 这些小孔就是辅助麦克风,这样通过两个麦克风来降低背景噪声的技术,被称为“双MIC降噪技术”。
  一般在通话的时候,主麦克风会将说话声和周边的噪音一起录入。这时候小孔的双MIC降噪技术就可以发挥作用了,将收集到的外界声波进行处理,通过主辅麦克风音频信号相减的方法来降噪。
  一般经过双MIC降噪技术的处理,即使身处在闹市之中,通话质量依然杠杠滴。如果没有这个技术处理的话,传输出去的声音就会很嘈杂,通话质量自然就会大大降低。
  双MIC降噪技术的出现,在手机领域中是一个突破性的成功,这一技术的广泛运用,为手机的语音通话提供了优质的保障。
  为何小孔远离主麦克风
  有些人会问:采用双MIC降噪技术的手机,为什么小孔会设计在远离主麦克的位置上?既然两者配合是为了声音更清晰,为什么不是靠在一起呢?
  原来,双MIC设计虽然可以有效消除周遭的噪音,但如果主麦克风和小孔距离太近的话,就可能导致到达两个麦克风的声波强度基本一样。简单地说,直接后果就是通话声音会变小,经常听不清楚对方在讲什么啦。
  真没想到这么一个小孔,作用竟然如此重要。对于那些担心手机会进水就用胶封住了,或者是觉得小孔会进灰而拿针去捅的人,你们真的多虑啦。
  快要开学啦~
  需要3C产品的宝宝们千万别错过以下优惠
  完美暑期,
  国美价到---购手机最高降价500元
  1,购各品牌手机均有好礼相送
  2,购手机凭学生证免费贴膜,下载,护理
  3,以旧换新开启绿色生活;旧手机可折抵现金
  OPPO手机:
  OPPO R9, 价格:2498
  5.5英寸1.6mm超窄边框
  VOOC闪充
  指纹识别
  4GB运存+64GB内存
  OPPO R9Plus, 价格:2999
  4120mAh大电池
  VOOC闪充
  指纹识别
  4GB运存+64GB内存
  苹果手机:
  iphone4S, 价格:799
  主屏尺寸: 3.5英寸
  像素: 800万像素
  主屏分辨率: 960x640像素
  电池容量: 1420mAh
  iphone6,限量 价格:3899
  主屏尺寸: 4.7英寸
  像素: 800万像素
  主屏分辨率: 像素
  电池容量: 1810mAh
  Iphone6S,限量 价格:4599
  主屏尺寸: 4.7英寸
  像素:1200万像素
  主屏分辨率: 像素
  电池容量: 1715mAh
  VIVO X7PLUS, 价格:2798
  主屏尺寸: 5.7英寸
  安卓5.1
  4G运存+64G内存
  1600万 像素
  全网通4G+网络
  VIVO X7, 价格:2498
  主屏尺寸: 5.2英寸
  安卓5.1
  4G运存+64G内存
  1600万 像素
  全网通4G+网络
  华为p9(64G) 全网通
  8核4G+64G,指纹识别,
  双摄像头,双卡双待,
  支持移动/联通/电信
  3688送200元配件礼包
  华为P9(32G) 运营商定制
  8核3G+32G,指纹识别,双摄像头,
  支持指定运营商制式 2998
  华为mate8(64G)全网通
  高性能与长续航的再次突破,
  搭载新一代旗舰芯片
  3299送500配件礼包
  华为畅享5S
  金属机身,轻薄坚韧,
  指纹识别,安全便捷。
  1099元
  金立M6
  5.5寸奥魔丽大屏幕,轻薄抗震,
  2.5D孤独玻璃,前置指纹更快捷,
  超级续航(5000mAh),
  双主卡双4G全网通,
  64+4G机身存储。
  惊爆价:2699元
  金立金刚GN5001S
  高清5.0寸屏幕,全金属机身,
  超长待机全网通,
  4000毫安锂电池,
  16+3G机身存储,
  500+800万高清拍照,
  惊爆价:999元。
  酷比手机s6
  5寸屏 运行1g,内存16g。
  2.5d双曲面玻璃屏。
  超薄机身。零售799
  酷比手机s9
  5寸 3g大运行
  16g 内存
  2.5d双曲面玻璃屏
  零售999
  三星手机S7edge(G9350)
  5688元送800元配件礼包
  5.5寸曲面屏
  双卡双待 四核
  4G+32G
  三星手机C7000
  2599元送c7系列大礼包
  5.7寸大屏
  双卡双待全网通 八核
  4G+32G
  购买VIVO指定机型
  就送音响货VR眼镜
  购买OPPO 手机
  送手机大礼包+音响
  购买华为手机
  送电脑桌或自拍杆或人体秤
  购买金立指定机型
  送10000毫安充电宝一个或马克杯
  购买酷比指定机型
  送茶具一套或自拍杆
  摩也放松器M1 299元
  bong智能手表bongXX 169元
  酷多啦儿童智能手表 399元
  大朋看看虚拟现实3D眼镜V3黑 169元
  巴巴腾智能儿童陪护机器人 698元
  37&智能手环 169元
  佳能单反相机EOS5DMARKⅢ(EF24-105mmIS)套机
  19799元
  佳能单反相机EOS6D(EF 24-105mm IS镜头)套机
  12999元
欢迎举报抄袭、转载、暴力色情及含有欺诈和虚假信息的不良文章。
请先登录再操作
请先登录再操作
微信扫一扫分享至朋友圈
搜狐公众平台官方账号
生活时尚&搭配博主 /生活时尚自媒体 /时尚类书籍作者
搜狐网教育频道官方账号
全球最大华文占星网站-专业研究星座命理及测算服务机构
主演:黄晓明/陈乔恩/乔任梁/谢君豪/吕佳容/戚迹
主演:陈晓/陈妍希/张馨予/杨明娜/毛晓彤/孙耀琦
主演:陈键锋/李依晓/张迪/郑亦桐/张明明/何彦霓
主演:尚格?云顿/乔?弗拉尼甘/Bianca Bree
主演:艾斯?库珀/ 查宁?塔图姆/ 乔纳?希尔
baby14岁写真曝光
李冰冰向成龙撒娇争宠
李湘遭闺蜜曝光旧爱
美女模特教老板走秀
曝搬砖男神奇葩择偶观
柳岩被迫成赚钱工具
大屁小P虐心恋
匆匆那年大结局
乔杉遭粉丝骚扰
男闺蜜的尴尬初夜
客服热线:86-10-
客服邮箱:

我要回帖

更多关于 手机当mic 的文章

 

随机推荐