-
Notifications
You must be signed in to change notification settings - Fork 215
/
index.ts
447 lines (386 loc) · 9.79 KB
/
index.ts
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
import type {EmitterSubscription} from 'react-native';
import {
DeviceEventEmitter,
NativeEventEmitter,
NativeModules,
Platform,
} from 'react-native';
const {RNAudioRecorderPlayer} = NativeModules;
export enum AudioSourceAndroidType {
DEFAULT = 0,
MIC,
VOICE_UPLINK,
VOICE_DOWNLINK,
VOICE_CALL,
CAMCORDER,
VOICE_RECOGNITION,
VOICE_COMMUNICATION,
REMOTE_SUBMIX,
UNPROCESSED,
RADIO_TUNER = 1998,
HOTWORD,
}
export enum OutputFormatAndroidType {
DEFAULT = 0,
THREE_GPP,
MPEG_4,
AMR_NB,
AMR_WB,
AAC_ADIF,
AAC_ADTS,
OUTPUT_FORMAT_RTP_AVP,
MPEG_2_TS,
WEBM,
UNUSED,
OGG,
}
export enum AudioEncoderAndroidType {
DEFAULT = 0,
AMR_NB,
AMR_WB,
AAC,
HE_AAC,
AAC_ELD,
VORBIS,
OPUS,
}
export enum AVEncodingOption {
lpcm = 'lpcm',
ima4 = 'ima4',
aac = 'aac',
MAC3 = 'MAC3',
MAC6 = 'MAC6',
ulaw = 'ulaw',
alaw = 'alaw',
mp1 = 'mp1',
mp2 = 'mp2',
mp4 = 'mp4',
alac = 'alac',
amr = 'amr',
flac = 'flac',
opus = 'opus',
wav = 'wav',
}
type AVEncodingType =
| AVEncodingOption.lpcm
| AVEncodingOption.ima4
| AVEncodingOption.aac
| AVEncodingOption.MAC3
| AVEncodingOption.MAC6
| AVEncodingOption.ulaw
| AVEncodingOption.alaw
| AVEncodingOption.mp1
| AVEncodingOption.mp2
| AVEncodingOption.mp4
| AVEncodingOption.alac
| AVEncodingOption.amr
| AVEncodingOption.flac
| AVEncodingOption.opus
| AVEncodingOption.wav;
export enum AVModeIOSOption {
gamechat = 'gamechat',
measurement = 'measurement',
movieplayback = 'movieplayback',
spokenaudio = 'spokenaudio',
videochat = 'videochat',
videorecording = 'videorecording',
voicechat = 'voicechat',
voiceprompt = 'voiceprompt',
}
export type AVModeIOSType =
| AVModeIOSOption.gamechat
| AVModeIOSOption.measurement
| AVModeIOSOption.movieplayback
| AVModeIOSOption.spokenaudio
| AVModeIOSOption.videochat
| AVModeIOSOption.videorecording
| AVModeIOSOption.voicechat
| AVModeIOSOption.voiceprompt;
export enum AVEncoderAudioQualityIOSType {
min = 0,
low = 32,
medium = 64,
high = 96,
max = 127,
}
export enum AVLinearPCMBitDepthKeyIOSType {
'bit8' = 8,
'bit16' = 16,
'bit24' = 24,
'bit32' = 32,
}
export interface AudioSet {
AVSampleRateKeyIOS?: number;
AVFormatIDKeyIOS?: AVEncodingType;
AVModeIOS?: AVModeIOSType;
AVNumberOfChannelsKeyIOS?: number;
AVEncoderAudioQualityKeyIOS?: AVEncoderAudioQualityIOSType;
AudioSourceAndroid?: AudioSourceAndroidType;
AVLinearPCMBitDepthKeyIOS?: AVLinearPCMBitDepthKeyIOSType;
AVLinearPCMIsBigEndianKeyIOS?: boolean;
AVLinearPCMIsFloatKeyIOS?: boolean;
AVLinearPCMIsNonInterleavedIOS?: boolean;
AVEncoderBitRateKeyIOS?: number;
OutputFormatAndroid?: OutputFormatAndroidType;
AudioEncoderAndroid?: AudioEncoderAndroidType;
AudioEncodingBitRateAndroid?: number;
AudioSamplingRateAndroid?: number;
AudioChannelsAndroid?: number;
}
const pad = (num: number): string => {
return ('0' + num).slice(-2);
};
export type RecordBackType = {
isRecording?: boolean;
currentPosition: number;
currentMetering?: number;
};
export type PlayBackType = {
isMuted?: boolean;
currentPosition: number;
duration: number;
isFinished: boolean;
};
class AudioRecorderPlayer {
private _isRecording: boolean;
private _isPlaying: boolean;
private _hasPaused: boolean;
private _hasPausedRecord: boolean;
private _recorderSubscription: EmitterSubscription;
private _playerSubscription: EmitterSubscription;
private _playerCallback: (event: PlayBackType) => void;
mmss = (secs: number): string => {
let minutes = Math.floor(secs / 60);
secs = secs % 60;
minutes = minutes % 60;
return pad(minutes) + ':' + pad(secs);
};
mmssss = (milisecs: number): string => {
const secs = Math.floor(milisecs / 1000);
const minutes = Math.floor(secs / 60);
const seconds = secs % 60;
const miliseconds = Math.floor((milisecs % 1000) / 10);
return pad(minutes) + ':' + pad(seconds) + ':' + pad(miliseconds);
};
/**
* Set listerner from native module for recorder.
* @returns {callBack((e: RecordBackType): void)}
*/
addRecordBackListener = (
callback: (recordingMeta: RecordBackType) => void,
): void => {
if (Platform.OS === 'android') {
this._recorderSubscription = DeviceEventEmitter.addListener(
'rn-recordback',
callback,
);
} else {
const myModuleEvt = new NativeEventEmitter(RNAudioRecorderPlayer);
this._recorderSubscription = myModuleEvt.addListener(
'rn-recordback',
callback,
);
}
};
/**
* Remove listener for recorder.
* @returns {void}
*/
removeRecordBackListener = (): void => {
if (this._recorderSubscription) {
this._recorderSubscription.remove();
this._recorderSubscription = null;
}
};
/**
* Set listener from native module for player.
* @returns {callBack((e: PlayBackType): void)}
*/
addPlayBackListener = (
callback: (playbackMeta: PlayBackType) => void,
): void => {
this._playerCallback = callback;
};
/**
* remove listener for player.
* @returns {void}
*/
removePlayBackListener = (): void => {
this._playerCallback = null;
};
/**
* start recording with param.
* @param {string} uri audio uri.
* @returns {Promise<string>}
*/
startRecorder = async (
uri?: string,
audioSets?: AudioSet,
meteringEnabled?: boolean,
): Promise<string> => {
if (!this._isRecording) {
this._isRecording = true;
try {
return await RNAudioRecorderPlayer.startRecorder(
uri ?? 'DEFAULT',
audioSets,
meteringEnabled ?? false,
);
} catch (error: any) {
this._isRecording = false;
throw error;
}
}
return 'Already recording';
};
/**
* Pause recording.
* @returns {Promise<string>}
*/
pauseRecorder = async (): Promise<string> => {
if (!this._hasPausedRecord) {
this._hasPausedRecord = true;
return RNAudioRecorderPlayer.pauseRecorder();
}
return 'Already paused recording.';
};
/**
* Resume recording.
* @returns {Promise<string>}
*/
resumeRecorder = async (): Promise<string> => {
if (this._hasPausedRecord) {
this._hasPausedRecord = false;
return RNAudioRecorderPlayer.resumeRecorder();
}
return 'Currently recording.';
};
/**
* stop recording.
* @returns {Promise<string>}
*/
stopRecorder = async (): Promise<string> => {
if (this._isRecording) {
this._isRecording = false;
this._hasPausedRecord = false;
return RNAudioRecorderPlayer.stopRecorder();
}
return 'Already stopped';
};
/**
* Resume playing.
* @returns {Promise<string>}
*/
resumePlayer = async (): Promise<string> => {
if (!this._isPlaying) {
return 'No audio playing';
}
if (this._hasPaused) {
this._hasPaused = false;
return RNAudioRecorderPlayer.resumePlayer();
}
return 'Already playing';
};
playerCallback = (event: PlayBackType): void => {
if (this._playerCallback) {
this._playerCallback(event);
}
if (event.isFinished) {
this.stopPlayer();
}
};
/**
* Start playing with param.
* @param {string} uri audio uri.
* @param {Record<string, string>} httpHeaders Set of http headers.
* @returns {Promise<string>}
*/
startPlayer = async (
uri?: string,
httpHeaders?: Record<string, string>,
): Promise<string> => {
if (!uri) {
uri = 'DEFAULT';
}
if (!this._playerSubscription) {
if (Platform.OS === 'android') {
this._playerSubscription = DeviceEventEmitter.addListener(
'rn-playback',
this.playerCallback,
);
} else {
const myModuleEvt = new NativeEventEmitter(RNAudioRecorderPlayer);
this._playerSubscription = myModuleEvt.addListener(
'rn-playback',
this.playerCallback,
);
}
}
if (!this._isPlaying || this._hasPaused) {
this._isPlaying = true;
this._hasPaused = false;
return RNAudioRecorderPlayer.startPlayer(uri, httpHeaders);
}
};
/**
* Stop playing.
* @returns {Promise<string>}
*/
stopPlayer = async (): Promise<string> => {
if (this._isPlaying) {
this._isPlaying = false;
this._hasPaused = false;
return RNAudioRecorderPlayer.stopPlayer();
}
return 'Already stopped playing';
};
/**
* Pause playing.
* @returns {Promise<string>}
*/
pausePlayer = async (): Promise<string> => {
if (!this._isPlaying) {
return 'No audio playing';
}
if (!this._hasPaused) {
this._hasPaused = true;
return RNAudioRecorderPlayer.pausePlayer();
}
};
/**
* Seek to.
* @param {number} time position seek to in millisecond.
* @returns {Promise<string>}
*/
seekToPlayer = async (time: number): Promise<string> => {
return RNAudioRecorderPlayer.seekToPlayer(time);
};
/**
* Set volume.
* @param {number} setVolume set volume.
* @returns {Promise<string>}
*/
setVolume = async (volume: number): Promise<string> => {
if (volume < 0 || volume > 1) {
throw new Error('Value of volume should be between 0.0 to 1.0');
}
return RNAudioRecorderPlayer.setVolume(volume);
};
/**
* Set playback speed.
* @param {number} setPlaybackSpeed set playback speed.
* @returns {Promise<string>}
*/
setPlaybackSpeed = async (playbackSpeed: number): Promise<string> => {
return RNAudioRecorderPlayer.setPlaybackSpeed(playbackSpeed);
};
/**
* Set subscription duration. Default is 0.5.
* @param {number} sec subscription callback duration in seconds.
* @returns {Promise<string>}
*/
setSubscriptionDuration = async (sec: number): Promise<string> => {
return RNAudioRecorderPlayer.setSubscriptionDuration(sec);
};
}
export default AudioRecorderPlayer;