2022 was a big year for Shotstack, we continue to build the technology that allows you to build video & media apps that will change the world.
So what did we get up too? Here's a quick snapshot:
Shotstack Studio - Our most exciting release this year, an interface where you can create your own template using drag and drop functionality. Click Studio and then Create Template to get started. We'd love to see what you create and what you think of the Studio.
Templates - We've made it easy for you to create and save templates in the API or Shotstack Studio. Build your own library or you use one of ours as a starting point.
Increased Speed - Render videos of any length in less than a minute through multi-part rendering. Saving you time and deploying your videos quicker.
AWS S3 - We launched an integration with AWS so you can send your rendered videos directly to your S3 bucket.
Mux - And if you use Mux, you can use our integration and send your rendered videos directly there as well. We are happy to introduce you to Mux if you aren't using them yet.
A little reminder, that you don't need to know how to code to use Shotstack to create media assets at scale. We have integrations with both Zapier and Make (previously Integromat).
All you need to do is add your Shotstack API keys to either platform and start building. Learn more with our how to articles.
We want everyone to see how you are using Shotstack to change the world. Whatever your definition of "world" is, we'd love to see your creations.
Tag us in your posts and use the hashtag #shotstackshowcase so we can share and feature you far and wide.
Here's a reminder of our social accounts:
We're continually adding new guides to the resource section of our website. Here you'll find everything from how to trim videos using Python to how to personalise videos using merge fields to edit your first video using Shotstack.
That's the wrap on 2022... stay tuned as we have some exciting plans for 2023.
Don't have a Shotstack account yet? Sign up for free here.
curl --request POST 'https://api.shotstack.io/v1/render' \
--header 'x-api-key: YOUR_API_KEY' \
--data-raw '{
"timeline": {
"tracks": [
{
"clips": [
{
"asset": {
"type": "video",
"src": "https://shotstack-assets.s3.amazonaws.com/footage/beach-overhead.mp4"
},
"start": 0,
"length": "auto"
}
]
}
]
},
"output": {
"format": "mp4",
"size": {
"width": 1280,
"height": 720
}
}
}'