snapshot
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @brief Tesing the MP3DecoderHelix
|
||||
*
|
||||
*/
|
||||
// install https://github.com/pschatzmann/arduino-libhelix.git
|
||||
|
||||
#include "AudioTools.h"
|
||||
#include "AudioTools/AudioLibs/AudioBoardStream.h"
|
||||
#include "AudioTools/AudioCodecs/CodecMP3Helix.h"
|
||||
#include "BabyElephantWalk60_mp3.h"
|
||||
|
||||
MemoryStream mp3(BabyElephantWalk60_mp3, BabyElephantWalk60_mp3_len);
|
||||
//CsvOutput<int16_t> out(Serial,2);
|
||||
AudioBoardStream out(AudioKitEs8388V1);
|
||||
EncodedAudioStream decoder(&out, new MP3DecoderHelix()); // output to decoder
|
||||
StreamCopy copier(decoder, mp3);
|
||||
|
||||
void setup(){
|
||||
Serial.begin(115200);
|
||||
|
||||
// setup I2s
|
||||
out.begin(out.defaultConfig());
|
||||
|
||||
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Info);
|
||||
decoder.begin();
|
||||
}
|
||||
|
||||
void loop(){
|
||||
copier.copy();
|
||||
}
|
||||
Reference in New Issue
Block a user