Hi Shotstack Team,
for some reason a vertical video I add as a clip to shotstack payload is rendered rotated to 90 degrees. I explicitly provide rotation to 0. Could you please suggest how to avoid it?
My original video - https://funelorawvideo.s3.us-east-2.amazonaws.com/video/draft/ac30db2a-9ffe-40f7-a5b8-fac8b7d1bf39.mov
My call to shotstack curl -X POST “https://api.shotstack.io/edit/v1/render”
-H “Content-Type: application/json”
-H “x-api-key: $MY_API_KEY”
-d ‘{
“timeline”: {
“background”: “#FFFFFF”,
“tracks”: [
{
“clips”: [
{
“fit”: “none”,
“start”: 1.5,
“length”: 5.541667,
“transform”: {
“rotate”: {
“angle”: 0
}
},
“scale”: 1,
“position”: “center”,
“asset”: {
“type”: “video”,
“volume”: 1,
“src”: “https://funelorawvideo.s3.us-east-2.amazonaws.com/video/draft/ac30db2a-9ffe-40f7-a5b8-fac8b7d1bf39.mov”
}
}
]
}
]
},
“output”: {
“format”: “mp4”,
“fps”: 30,
“scaleTo”: “sd”,
“quality”: “medium”,
“size”: {
“width”: 1080,
“height”: 1920
},
“destinations”: [
{
“provider”: “s3”,
“options”: {
“bucket”: “funelorawvideo”,
“acl”: “public-read”,
“region”: “us-east-2”,
“prefix”: “v1”
}
}
]
}
}’