Add TikTok Overlay to Videos

View Markdown

You can use the layers option to add a TikTok-style overlay to your videos.

curl -X POST "https://api.ittybit.com/tasks" \
-H "Authorization: Bearer ITTYBIT_API_KEY" \
-H "Content-Type: application/json" \
-d '{
  "url": "https://ittyb.it/sample.mp4",
  "kind": "video",
  "options": {
    "layers": [
      {
        "kind": "image",
        "url": "https://ittyb.it/icon.png",
        "width": 80,
        "height": 80,
        "top": 20,
        "left": 20
      },
      {
        "kind": "text",
        "text": "@topcreator",
        "font": "Inter",
        "font_size": 20,
        "color": "#ffffff",
        "top": 120,
        "left": 20
      }
    ]
  }
}'