snapshot
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @file url_mts-hex.ino
|
||||
* @author Phil Schatzmann
|
||||
|
||||
* @copyright GPLv3
|
||||
*/
|
||||
|
||||
#include "AudioTools.h"
|
||||
#include "AudioTools/AudioCodecs/CodecMTS.h"
|
||||
#include "AudioTools/Communication/HLSStream.h"
|
||||
|
||||
HexDumpOutput out(Serial);
|
||||
HLSStream hls_stream("SSID", "password");
|
||||
MTSDecoder mts;
|
||||
EncodedAudioStream mts_stream(&out, &mts);
|
||||
StreamCopy copier(mts_stream, hls_stream);
|
||||
|
||||
// Arduino Setup
|
||||
void setup(void) {
|
||||
Serial.begin(115200);
|
||||
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Info);
|
||||
|
||||
mts_stream.begin();
|
||||
|
||||
hls_stream.begin("http://a.files.bbci.co.uk/media/live/manifesto/audio/simulcast/hls/nonuk/sbr_vlow/ak/bbc_world_service.m3u8");
|
||||
|
||||
}
|
||||
|
||||
// Arduino loop
|
||||
void loop() {
|
||||
copier.copy();
|
||||
}
|
||||
Reference in New Issue
Block a user