I am thinking about writing an app that uses OSC (Open Sound Control) to retrieve information from a mixer. The program will use a UTP connection to request the data. The data is returned as a Binary Blob. According to the documentation, the function returns 50 32bits values as a single OSC blob.
The 32bits values returned are representing 100 successive little endian coded short ints"
How do I “get at” the integer values? Can I just copy the blob to an array of short ints and then iterate over them? I’ve never worked with blobs before and I’m kind of lost. Could someone please point me in the right direction? I appreciate any help I can get.
Best Regards,
-Marty