Not sure about removing part (good question), but duplicating metadata of frame 26 in the beginning should look like this:RESET_9999 wrote: Fri Jul 23, 2021 10:26 pmWhat would be the script if I have to add 24 frames in the beginning and remove the last 2 frames at the end ( or should I be removing 26 frames since I'm delaying the metadata 24frames??)
Code: Select all
"duplicate": [
{
"source": 25,
"offset": 0,
"length": 25
}
]Something like this:RESET_9999 wrote: Fri Jul 23, 2021 10:26 pmAlso, what would be the script if I want to remove 24 frames in the beginning and add 10 frames at the end?
Code: Select all
{
"remove": [
"0-23"
],
"duplicate": [
{
"source": frame_count - 1,
"offset": frame_count - 1,
"length": 11
}
]
}