gabriel_parrale
9 years agoVisitor
How to create roArray of roAssociativeArrays
For example I need to creat the following and pass it to the respective content node (Streams - roArray of roAssociativeArrays😞
{
url : "http://me.com/x-384.mp4",
bitrate : 384
quality : false
contentid : "x-384"
},
{
url : "http://me.com/x-2500.mp4",
bitrate : 2500
quality : true
contentid : "x-1500"
}
]
This data comes to me in a json but as I transform an array of associativearrays assuming that I am inside the json loop
{
url : "http://me.com/x-384.mp4",
bitrate : 384
quality : false
contentid : "x-384"
},
{
url : "http://me.com/x-2500.mp4",
bitrate : 2500
quality : true
contentid : "x-1500"
}
]
This data comes to me in a json but as I transform an array of associativearrays assuming that I am inside the json loop