mifi / editly

Slick, declarative command line video editing & API
MIT License
4.75k stars 309 forks source link

Title always zooms in? #215

Open jamesh-purr opened 1 year ago

jamesh-purr commented 1 year ago

The title always seems to zoom in no matter what. I have set zoomDirection on clips etc the title just always zooms in, it makes no sense to have title just zoom in and not be able to change it?

preview

gabrieltorreiro commented 1 year ago
editly({
    width: 1920,
    height: 1080,
    outPath: "outputpath.mp4",
    fast: true,
    fps: 60,
    clips: [
      {
        layers: [
          {
            type: "image",
            path: "image1_path.jpg",
            zoomAmount: 0, // Set time zoomAmount to 0 to remove the "zoom in"
          },
          {
            type: "image",
            path: "image2_path.jpg",
            zoomAmount: 0,
          },
        ],
      },
    ],
  });

I hope this can be helpful