Skip to content

Commit 53c0c58

Browse files
committed
Sound apps: enhance description in README & javadocs, add link to YT video
1 parent 837219b commit 53c0c58

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11

2+
# List of projects
3+
24
## Microphone sound recorder/player
35
Use [sound-recorder.bat](sound-recorder.bat) script to start application
46

5-
## Microphone sound spectrum analyzer
7+
## Application that shows real-time spectrum of sound
68
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

sound-recorder-n-spectrum-analyzer/src/main/java/by/andd3dfx/capturesound/AudioCaptureApp.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@
1717
import java.io.InputStream;
1818

1919
/**
20+
* <pre>
21+
* Microphone sound recorder/player
22+
*
2023
* Press [Start] button to start recording
21-
* <p>
2224
* 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+
*
2527
* Main frequency printed into console after that
28+
* </pre>
2629
*/
2730
public class AudioCaptureApp extends JFrame {
2831

sound-recorder-n-spectrum-analyzer/src/main/java/by/andd3dfx/capturesound/ShowRealTimeSpectrumApp.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
import java.util.Arrays;
1616

1717
/**
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
1921
*/
2022
public class ShowRealTimeSpectrumApp {
2123

0 commit comments

Comments
 (0)