zoukankan      html  css  js  c++  java
  • Android之录音工具类

    /**
     * 录音工具类
     * 
     * @author rendongwei
     * 
     */
    public class RecordUtil {
        private static final int SAMPLE_RATE_IN_HZ = 8000;
        private MediaRecorder recorder = new MediaRecorder();
        // 录音的路径
        private String mPath;
    
        public RecordUtil(String path) {
            mPath = path;
        }
    
        /**
         * 开始录音
         * 
         * @throws IOException
         */
        public void start() throws IOException {
            String state = android.os.Environment.getExternalStorageState();
            if (!state.equals(android.os.Environment.MEDIA_MOUNTED)) {
                throw new IOException("SD Card is not mounted,It is  " + state
                        + ".");
            }
            File directory = new File(mPath).getParentFile();
            if (!directory.exists() && !directory.mkdirs()) {
                throw new IOException("Path to file could not be created");
            }
            recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
            recorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);
            recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
            recorder.setAudioSamplingRate(SAMPLE_RATE_IN_HZ);
            recorder.setOutputFile(mPath);
            recorder.prepare();
            recorder.start();
        }
    
        /**
         * 结束录音
         * 
         * @throws IOException
         */
        public void stop() throws IOException {
            recorder.stop();
            recorder.release();
        }
    
        /**
         * 获取录音时间
         * 
         * @return
         */
        public double getAmplitude() {
            if (recorder != null) {
                return (recorder.getMaxAmplitude());
            }
            return 0;
        }
    }
  • 相关阅读:
    转载:MyBatis获取插入记录的自增长字段值
    006---抽象类
    005---组合
    004---继承与派生
    003---属性查找和绑定方法
    002---类与对象
    001---面向对象和面向过程的区别
    017---Django的中间件解决跨域
    10---git安装
    007---归并排序
  • 原文地址:https://www.cnblogs.com/lee0oo0/p/3461399.html
Copyright © 2011-2022 走看看