-
Notifications
You must be signed in to change notification settings - Fork 3
/
App.tsx
123 lines (116 loc) · 2.85 KB
/
App.tsx
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
import { useCallback, useState } from 'react';
import {
ActivityIndicator,
Alert,
Button,
ScrollView,
StyleSheet,
Text,
View,
} from 'react-native';
import {
scale,
sample,
robustScale,
trimmedScale,
analyzeAudio,
} from 'react-native-audio-analyzer';
import type { AmplitudeData } from 'react-native-audio-analyzer';
import ReactNativeBlobUtil from 'react-native-blob-util';
export default function App() {
const [result, setResult] = useState<AmplitudeData[]>([]);
const [isLoading, setIsLoading] = useState(false);
const start = useCallback(async () => {
try {
setIsLoading(true);
const response = await ReactNativeBlobUtil.config({
fileCache: true,
}).fetch(
'GET',
'https://github.com/rafaelreis-hotmart/Audio-Sample-files/raw/master/sample.mp3',
{}
);
const path = response.path();
const data = analyzeAudio(path, 2);
setResult(data);
} catch (error) {
Alert.alert('Error', String(error));
} finally {
setIsLoading(false);
}
}, []);
const amplitudes = result.map((_) => _.amplitude);
const results = [
{
title: 'Trimmed scale:',
data: trimmedScale(amplitudes).map((value, index) => (
<View key={index} style={[styles.item, { height: value * 100 }]} />
)),
},
{
title: 'Robust scale:',
data: robustScale(amplitudes).map((value, index) => (
<View key={index} style={[styles.item, { height: value * 100 }]} />
)),
},
{
title: 'Scale + sample:',
data: scale(sample(amplitudes, 35)).map((value, index) => (
<View key={index} style={[styles.item, { height: value * 100 }]} />
)),
},
{
title: 'Scale:',
data: scale(amplitudes).map((value, index) => (
<View key={index} style={[styles.item, { height: value * 100 }]} />
)),
},
];
return (
<View style={styles.container}>
<Button title="Start" onPress={start} />
{isLoading ? (
<ActivityIndicator style={styles.loader} size="large" />
) : (
<View>
{results.map((_, index) => (
<View style={styles.example} key={index}>
<Text style={styles.title}>{_.title}</Text>
<ScrollView horizontal style={styles.scroll}>
<View style={styles.row}>{_.data}</View>
</ScrollView>
</View>
))}
</View>
)}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
backgroundColor: '#ffffff',
},
loader: {
padding: 30,
},
row: {
flexDirection: 'row',
alignItems: 'center',
},
title: {
marginBottom: 5,
},
example: {
padding: 10,
},
scroll: {
maxHeight: 200,
},
item: {
width: 3,
backgroundColor: 'blue',
marginHorizontal: 2,
},
});