What 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??)
I tried this but it doesn't work. Please fix my stupidity lol
Code: Select all
{
"remove": [
"167703-167704"
],
"duplicate": [
{
"source": 0,
"offset": 24,
"length": 10
}
]
}Also, what would be the script if I want to remove 24 frames in the beginning and add 10 frames at the end?
this?
Code: Select all
{
"remove": [
"0-23"
],
"duplicate": [
{
"source": last_frame - 1,
"offset": last_frame - 1,
"length": 11
}
]
}