aryus96
USA
Asked
— Edited
Hi,
I'm trying to make a plugin that could play some specific sound on my Ez-Robot. I used the following tutorial : https://synthiam.com/Tutorial/How-To-Make-An-EZ-Builder-Plugin-16328/25
I'm stuck at the point where I compress the PCM Data with GZip :
using (MemoryStream ms = new MemoryStream())
{
using (GZipStream gz = new GZipStream(ms, CompressionMode.Compress))
pcm.CopyTo(gz);
_cf.STORAGE[ConfigTitles.COMPRESSED_AUDIO_DATA] = ms.ToArray();
}
Where is the ConfigTitles.COMPRESSED_AUDIO_DATA is coming from ? What should be the value ?
Unfortunately the link to the source code is dead : OutputAudioFromEZ-BSource.zip
Regards
Related Hardware (view all EZB hardware)
Six Hexapod
by EZ-Robot
Six hexapod robot kit: Canadian-designed, customizable WiFi 6-legged platform with 12 servos/12 DOF for dynamic motion. Available at EZ-Robot.
Wi-Fi / USB
Servos
24
Camera
Audio
UART
3
I2C
ADC
8
Digital
24

UPDATE, the following link works : https://ez-robot.com/uploads/user/DB763BE15E695777689418BE7364E0A3/OutputAudioFromEZ-BSource-636324426680074757.zip
And the value of ConfigTitles.COMPRESSED_AUDIO_DATA :