Asked — Edited

Playing A Sound

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 Six Hexapod
Skip to comments

ARC Pro

Upgrade to ARC Pro

Stay at the forefront of robot programming innovation with ARC Pro, ensuring your robot is always equipped with the latest advancements.