lmw
2024-12-24 bfd1ad288092a4b4a010ea230466f5e86a4e3de4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
package com.sinata.xqmuse.utils;
 
import android.content.Context;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.net.Uri;
import android.os.Environment;
import android.os.Handler;
import android.util.Log;
 
import com.google.android.exoplayer2.ExoPlayer;
import com.google.android.exoplayer2.MediaItem;
import com.google.android.exoplayer2.PlaybackException;
import com.google.android.exoplayer2.Player;
import com.google.android.exoplayer2.SimpleExoPlayer;
import com.google.android.exoplayer2.source.MediaSource;
import com.sinata.xqmuse.utils.exo.ExoMediaPlayer;
import com.sinata.xqmuse.utils.exo.ExoMediaPlayerFactory;
 
import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
 
import xyz.doikki.videoplayer.player.AbstractPlayer;
 
public class AudioUtils {
 
    //文件路径
    private String filePath;
    //文件夹路径
    private String FolderPath;
 
    private MediaRecorder mMediaRecorder;
    private final String TAG = "fan";
    public static final int MAX_LENGTH = 1000 * 600;// 最大录音时长十分钟,实际行程设置为5分钟上传一次
 
    private OnAudioStatusUpdateListener audioStatusUpdateListener;
    private SimpleExoPlayer mMediaPlayer;
 
    private float volume = 0.5f; //播放音量
 
    private String audio = "";//音源
 
    private boolean isPause = false; //是否暂停,解决循环播放时资源文件prepare异步产生的暂停失败问题
 
    /**
     * 文件存储默认sdcard/record
     */
    public AudioUtils() {
        //默认保存路径为/sdcard/record/下
        this(Environment.getExternalStorageDirectory() + "/record/");
    }
 
    public AudioUtils(String filePath) {
 
        File path = new File(filePath);
        if (!path.exists())
            path.mkdirs();
 
        this.FolderPath = filePath;
    }
 
    private long startTime;
    private long endTime;
 
 
    /**
     * 开始录音 使用amr格式
     * 录音文件
     *
     * @return
     */
    public void startRecord() {
        // 开始录音
        /* ①Initial:实例化MediaRecorder对象 */
        if (mMediaRecorder == null)
            mMediaRecorder = new MediaRecorder();
        try {
            /* ②setAudioSource/setVedioSource */
            mMediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);// 设置麦克风
            /* ②设置音频文件的编码:AAC/AMR_NB/AMR_MB/Default 声音的(波形)的采样 */
            mMediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.AAC_ADTS);
            /*
             * ②设置输出文件的格式:THREE_GPP/MPEG-4/RAW_AMR/Default THREE_GPP(3gp格式
             * ,H263视频/ARM音频编码)、MPEG-4、RAW_AMR(只支持音频且音频编码要求为AMR_NB)
             */
            mMediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
 
            filePath = FolderPath + System.currentTimeMillis() + ".caf";
            /* ③准备 */
            mMediaRecorder.setOutputFile(filePath);
            mMediaRecorder.setMaxDuration(MAX_LENGTH);
            mMediaRecorder.prepare();
            /* ④开始 */
            mMediaRecorder.start();
            // AudioRecord audioRecord.
            /* 获取开始时间* */
            startTime = System.currentTimeMillis();
            updateMicStatus();
            Log.e("fan", "startTime" + startTime);
        } catch (IllegalStateException e) {
            Log.i(TAG, "call startAmr(File mRecAudioFile) failed!" + e.getMessage());
        } catch (IOException e) {
            Log.i(TAG, "call startAmr(File mRecAudioFile) failed!" + e.getMessage());
        }
    }
 
    /**
     * 停止录音
     */
    public long stopRecord() {
        if (mMediaRecorder == null)
            return 0L;
        endTime = System.currentTimeMillis();
 
        //有一些网友反应在5.0以上在调用stop的时候会报错,翻阅了一下谷歌文档发现上面确实写的有可能会报错的情况,捕获异常清理一下就行了,感谢大家反馈!
        try {
            mMediaRecorder.stop();
            mMediaRecorder.reset();
            mMediaRecorder.release();
            mMediaRecorder = null;
 
            audioStatusUpdateListener.onStop(filePath);
//            filePath = ""; //这行代码会引起连续录音文件为空的bug
 
        } catch (RuntimeException e) {
            if (mMediaRecorder != null) {
                mMediaRecorder.reset();
                mMediaRecorder.release();
                mMediaRecorder = null;
            }
            File file = new File(filePath);
            if (file.exists())
                file.delete();
 
            filePath = "";
 
        }
        return endTime - startTime;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    /**
     * 取消录音
     */
    public void cancelRecord() {
 
        try {
 
            mMediaRecorder.stop();
            mMediaRecorder.reset();
            mMediaRecorder.release();
            mMediaRecorder = null;
 
        } catch (RuntimeException e) {
            mMediaRecorder.reset();
            mMediaRecorder.release();
            mMediaRecorder = null;
        }
        File file = new File(filePath);
        if (file.exists())
            file.delete();
 
        filePath = "";
 
    }
 
    private final Handler mHandler = new Handler();
    private Runnable mUpdateMicStatusTimer = new Runnable() {
        public void run() {
            updateMicStatus();
        }
    };
 
 
    private int BASE = 1;
    private int SPACE = 100;// 间隔取样时间
 
    public void setOnAudioStatusUpdateListener(OnAudioStatusUpdateListener audioStatusUpdateListener) {
        this.audioStatusUpdateListener = audioStatusUpdateListener;
    }
 
    /**
     * 更新麦克状态
     */
    private void updateMicStatus() {
 
        if (mMediaRecorder != null) {
            double ratio = (double) mMediaRecorder.getMaxAmplitude() / BASE;
            double db = 0;// 分贝
            if (ratio > 1) {
                db = 20 * Math.log10(ratio);
                if (null != audioStatusUpdateListener) {
                    audioStatusUpdateListener.onUpdate(db, System.currentTimeMillis() - startTime);
                }
            }
            mHandler.postDelayed(mUpdateMicStatusTimer, SPACE);
        }
    }
 
    public interface OnAudioStatusUpdateListener {
        /**
         * 录音中...
         *
         * @param db   当前声音分贝
         * @param time 录音时长
         */
        public void onUpdate(double db, long time);
 
        /**
         * 停止录音
         *
         * @param filePath 保存路径
         */
        public void onStop(String filePath);
 
        public void onStartPlay();
 
        public void onFinishPlay();
 
        public void onGetDuration(int duration);
    }
 
 
    /**
     * 开始播放音频
     * @param context
     * @param filePath
     */
    public void startPlayMusic(Context context, String filePath) {
        if (mMediaPlayer != null) {
            stopPlayMusic(false);
        }
        mMediaPlayer = new SimpleExoPlayer.Builder(context).build();
        mMediaPlayer.setVolume(volume);
        isPause = false;
        try {
            Log.e("mmp", "开始播放 path:" + filePath);
            MediaItem mediaItem = MediaItem.fromUri(Uri.parse(filePath));
            mMediaPlayer.setMediaItem(mediaItem);
            mMediaPlayer.prepare();
            mMediaPlayer.play();
            mMediaPlayer.addListener(new Player.Listener(){
                @Override
                public void onPlayerError(PlaybackException error) {
                    Log.e("mmp","播放错误:"+error.getMessage());
                }
 
                @Override
                public void onPlayerStateChanged(boolean playWhenReady, int playbackState) {
                    if (playbackState == Player.STATE_BUFFERING)
                        Log.e("mmp","缓冲中...STATE_BUFFERING");
                    else if (playbackState == Player.STATE_READY){
                        Log.e("mmp","缓冲完成,音频准备就绪:STATE_READY");
 
                    } else if (playbackState == Player.STATE_ENDED){
                        Log.e("mmp","播放完成:STATE_ENDED");
                        stopPlayMusic(true);
                    } else if (playbackState == Player.STATE_IDLE){
                        Log.e("mmp","播放器空闲:STATE_IDLE");
                    }
                }
            });
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
 
    /**
     * 循环播放音频
     * @param context
     * @param filePath
     */
    public void loopPlayMusic(Context context, String filePath) {
        if (mMediaPlayer != null) {
            stopPlayMusic(false);
        }
        mMediaPlayer = new SimpleExoPlayer.Builder(context).build();
        mMediaPlayer.setVolume(volume);
        isPause = false;
        try {
            Log.e("mmp", "循环播放 path:" + filePath);
            MediaItem mediaItem = MediaItem.fromUri(Uri.parse(filePath));
            mMediaPlayer.setMediaItem(mediaItem);
            mMediaPlayer.prepare();
            mMediaPlayer.setRepeatMode(Player.REPEAT_MODE_ONE);
            mMediaPlayer.play();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
    public void pause(){
        if (mMediaPlayer != null) {
            mMediaPlayer.pause();
            isPause = true;
        }
    }
 
    public void resume(){
        if (mMediaPlayer != null) {
            mMediaPlayer.play();
            isPause = false;
        }
    }
 
    public void seekTo(int now){
        if (mMediaPlayer != null) {
            mMediaPlayer.seekTo(now*1000);
        }
    }
 
    public void setVolume(float volume){
        this.volume = volume;
        if (mMediaPlayer!=null){
            mMediaPlayer.setVolume(volume);
        }
    }
 
    public long getCurrentPosition(){
        if (mMediaPlayer!=null){
            return mMediaPlayer.getCurrentPosition();
        }
        return 0;
    }
 
 
    /**
     * 结束录音播放
     * @param needCallback  true真实结束 才走结束回调,为了切换下一首而结束的 不调结束回调
     */
    public void stopPlayMusic(boolean needCallback) {
        if (mMediaPlayer == null)
            return;
        try {
            mMediaPlayer.stop();
            mMediaPlayer.release();
            mMediaPlayer = null;
            if (audioStatusUpdateListener != null&&needCallback)
                audioStatusUpdateListener.onFinishPlay();
        } catch (IllegalStateException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 获取文件长度
     *
     * @param context
     * @param filePath
     * @return
     */
//    public int getMusicTime(Context context, String filePath) {
//        if (mMediaPlayer != null) {
//            stopPlayMusic(false);
//        }
//        mMediaPlayer = new MediaPlayer();
//        try {
//            mMediaPlayer.setDataSource(context, Uri.parse(filePath));
//            mMediaPlayer.prepare();
//            int duration = mMediaPlayer.getDuration();
//            if (0 != duration) {
//                mMediaPlayer.release();
//                return duration / 1000;
//            }
//        } catch (IOException e) {
//            e.printStackTrace();
//        }
//        return 0;
//    }
 
}