I want to serialize an audioclip. Is that possible? How can I do that?
First you need to get a raw bytes of audio asset.
Then just use Base64 encoding. Basically Base64 will let you to convert to string any binary data. Here is C# code:
Convert.ToBase64String (bytesToEncode);