File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ As “Audio Sources” we will have e.g.:
20
20
- Analog Microphones – [ AnalogAudioStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_analog_audio_stream.html )
21
21
- Digital Microphones – [ I2SStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_i2_s_stream.html )
22
22
- Files on the Internet – [ URLStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_u_r_l_stream.html )
23
+ - Streaming Internet Radios - [ ICYStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_i_c_y_stream.html )
23
24
- Generated Sound – [ GeneratedSoundStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_generated_sound_stream.html )
24
25
- Mobile Phone A2DP Bluetooth – [ A2DPStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_a2_d_p_stream.html )
25
26
- Binary Data in Flash Memory – [ MemoryStream] ( https://pschatzmann.github.io/arduino-audio-tools/html/classaudio__tools_1_1_memory_stream.html )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ namespace audio_tools {
11
11
* @brief Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the
12
12
* regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method.
13
13
*
14
- * This is basically just a URLStreamD with the metadata turned on.
14
+ * This is basically just a URLStream with the metadata turned on.
15
15
*
16
16
* @author Phil Schatzmann
17
17
* @copyright GPLv3
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ namespace audio_tools {
8
8
9
9
/* *
10
10
* @brief ICYStream implementation for the ESP32 based on a FreeRTOS task
11
+ * This is a Icecast/Shoutcast Audio Stream which splits the data into metadata and audio data. The Audio data is provided via the
12
+ * regular stream functions. The metadata is handled with the help of the MetaDataICY state machine and provided via a callback method.
13
+ *
14
+ * This is basically just a URLStream with the metadata turned on.
15
+ *
11
16
* @author Phil Schatzmann
12
17
* @copyright GPLv3
13
18
*/
You can’t perform that action at this time.
0 commit comments