staticFile() does not support relative paths
If you got the following error message:
staticFile() does not support relative paths. Instead, pass the name of a file that is inside the public/ folder.You have tried to pass a relative path to staticFile():
import { staticFile } from "remotion";
staticFile ("../public/image.png");import { staticFile } from "remotion";
staticFile ("./image.png");Or you tried to pass an absolute path:
import { staticFile } from "remotion";
staticFile ("/Users/bob/remotion-project/public/image.png");Or you tried to add a public/ fix which is unnecessary:
import { staticFile } from "remotion";
staticFile ("public/image.png");Instead, pass the name of the file that is inside the public folder directly:
import { staticFile } from "remotion";
staticFile ("image.png");