Skip to content

Instantly share code, notes, and snippets.

View Kushal6070's full-sized avatar

Kushal_70 Kushal6070

View GitHub Profile
{
"name": "Notion + Shotstack demo",
"flow": [
{
"id": 40,
"module": "notion:watchDatabaseItems",
"version": 1,
"parameters": {
"limit": 1,
"select": "create",
@Kushal6070
Kushal6070 / shotstack-car-dealer-slideshow-blueprint.json
Last active October 31, 2022 03:58
Make(Integromat) + Shotstack + Google Sheets automotive video generator blueprint
{
"name": "Automotive slideshow generator",
"flow": [
{
"id": 14,
"module": "google-sheets:filterRows",
"version": 2,
"parameters": {
"__IMTCONN__": 306021
},
@Kushal6070
Kushal6070 / mp4.csv
Last active October 18, 2022 06:10
CSV containing list of mp4 urls to demonstrate how to convert mp4 to mp3 using Python and Shotstack API
video_name url
slideshow https://d1uej6xx5jo4cd.cloudfront.net/slideshow-with-audio.mp4
luma_mate https://cdn.shotstack.io/au/v1/msgtwx8iw6/d724e03c-1c4f-4ffa-805a-a47aab70a28f.mp4
real_estate https://cdn.shotstack.io/au/v1/msgtwx8iw6/b03c7b50-07f3-4463-992b-f5241ea15c18.mp4
birthday https://cdn.shotstack.io/au/stage/c9npc4w5c4/d2552fc9-f05a-4e89-9749-a87d9a1ae9aa.mp4
mirror_effect https://cdn.shotstack.io/au/v1/msgtwx8iw6/c900a02f-e008-4c37-969f-7c9578279100.mp4
@Kushal6070
Kushal6070 / shotstack-video-personalization-make-scenario.json
Created October 10, 2022 02:55
Shotstack video personalization Make scenario JSON
{
"name": "Personalized Birthday Card - Render",
"flow": [
{
"id": 1,
"module": "google-sheets:filterRows",
"version": 2,
"parameters": {
"__IMTCONN__": 306021
},
@Kushal6070
Kushal6070 / birthday-card-template.json
Created October 10, 2022 02:33
Shotstack-Make-Integromat-video-personalization
{
"timeline": {
"soundtrack": {
"src": "https://cdn.pixabay.com/audio/2022/02/21/audio_4e7e25d719.mp3",
"effect": "fadeOut"
},
"background": "#000000",
"tracks": [
{
"clips": [
@Kushal6070
Kushal6070 / images_to_gif_node.js
Last active September 16, 2022 05:59
Create gif from images using Node JS and Shotstack API
// Create gif from images using Python and Shotstack API.
// It uses the Shotstack cloud video editing API to edit and render.
// Visit github.com/shotstack-samples/images-to-gif-nodejs to learn how it works
const Shotstack = require('shotstack-sdk');
const defaultClient = Shotstack.ApiClient.instance;
const DeveloperKey = defaultClient.authentications['DeveloperKey'];
const api = new Shotstack.EditApi();
@Kushal6070
Kushal6070 / images_to_video.js
Created September 16, 2022 05:31
Create videos from images using Node js and Shotstack API
// Turn images to slideshow videos using Python and Shotstack API.
// It uses the Shotstack cloud video editing API to edit and render videos.
// Visit github.com/shotstack-samples/images-to-video-nodejs to learn how it works
const Shotstack = require('shotstack-sdk');
const defaultClient = Shotstack.ApiClient.instance;
const DeveloperKey = defaultClient.authentications['DeveloperKey'];
const api = new Shotstack.EditApi();
@Kushal6070
Kushal6070 / imagesToVideos.py
Last active September 16, 2022 04:33
Turn images to slideshow videos using Python and Shotstack API
'''
Turn images to slideshow videos using Python and Shotstack API.
It uses the Shotstack cloud video editing API to edit and render videos.
Go to github.com/shotstack-samples/images-to-video-python to learn how it works
'''
import shotstack_sdk as shotstack
import os
import sys