File tree 3 files changed +14
-5
lines changed
sound-recorder-n-spectrum-analyzer
src/main/java/by/andd3dfx/capturesound
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 1
1
2
+ # List of projects
3
+
2
4
## Microphone sound recorder/player
3
5
Use [ sound-recorder.bat] ( sound-recorder.bat ) script to start application
4
6
5
- ## Microphone sound spectrum analyzer
7
+ ## Application that shows real-time spectrum of sound
6
8
Use [ spectrum-analyzer.bat] ( spectrum-analyzer.bat ) script to start application
9
+
10
+ Check [ YouTube video] ( https://youtu.be/OfHj-EmXh2k ) with description of project
Original file line number Diff line number Diff line change 17
17
import java .io .InputStream ;
18
18
19
19
/**
20
+ * <pre>
21
+ * Microphone sound recorder/player
22
+ *
20
23
* Press [Start] button to start recording
21
- * <p>
22
24
* Press [Stop] button to stop recording
23
- * <p>
24
- * Press [Playback] button to start play of recorded audio.
25
+ * Press [Playback] button to start play of recorded audio
26
+ *
25
27
* Main frequency printed into console after that
28
+ * </pre>
26
29
*/
27
30
public class AudioCaptureApp extends JFrame {
28
31
Original file line number Diff line number Diff line change 15
15
import java .util .Arrays ;
16
16
17
17
/**
18
- * Application that shows real-time spectrum
18
+ * Application that shows real-time spectrum of sound
19
+ *
20
+ * @see <a href="https://youtu.be/OfHj-EmXh2k">Youtube video</a> with project description
19
21
*/
20
22
public class ShowRealTimeSpectrumApp {
21
23
You can’t perform that action at this time.
0 commit comments