Here is the JSON that needed to be proper parsed:
https://docs.acrcloud.com/metadata
i am trying to get the:
title of the song, album name, artists.
I tried like this:
JObject o = JObject.Parse(result);
Console.WriteLine("Name: " + o["metadata"]["music"]);
and it works but i am getting all the data in "music" i just need to extract the specific data.
o["metadata"]["music"][0]will get you access to the actual object.