Hi there,
I was wondering whether or not I could get Templater to parse my JSON. The issue is my data structure is nested as I am intending to make a clips with scenes and stages. So far in Ae the script says “changing footage layers…” I am not sure if I’ve misused the code or made my Ae file wrong. Would love to know. Here’s an example of my Data.
[
{
"instructionTitle" : "how to make a self-populating video",
"mainImg" : "img/geting-json-make-a-video.jpg",
"stages" :
[
{
"slide": 1,
"name": "Intro",
"steps":
[
{
"duration": 100,
"img" : "img/intro-01.jpg",
"text" : "Start with JSON file"
},
{
"duration": 600,
"img" : "img/intro-02.jpg",
"text" : "Start Ae File"
},
{
"duration" : 200,
"img" : "img/intro-03.jpg",
"text" : "Try and pair the documents"
}
]
},
{
"slide" : 2,
"name" : "Main",
"steps" :
[
{
"duration" : 8000,
"img" : "vid/main-01.mov",
"text" : "Ask for help"
},
{
"duration" : 200,
"img" : "img/main-02.png",
"text" : "Sulk and cry"
},
{
"duration" : 400,
"img" : "img/main-03.png",
"text" : "Search for memes online"
}
]
},
{
"slide" : 3,
"name" : "End",
"steps" :
[
{
"duration" : 450,
"img" : "vid/end-01.jpg",
"text" : "solve all the problems"
}
]
}
]
}
]