getStaticFiles()
Available from v3.3.26.
Gets an array containing all files in the public/
folder. You can reference them by using staticFile()
.
This feature does not work in the Remotion Player and returns an empty array.
On Linux, watching for changes in subdirectories is only supported from Node.js v19.1.0. If you use a version earlier than that, you need to refresh the Remotion Preview browser tab manually.
example.tstsx
import {getStaticFiles ,StaticFile ,Video } from "remotion";constfiles =getStaticFiles ();/*[{"name": "video.mp4","src": "/static-7n5spa/video.mp4","sizeInBytes": 432944,"lastModified": 1670170466865},{"name": "assets/data.json","src": "/static-7n5spa/assets/data.json","sizeInBytes": 1311,"lastModified": 1670170486089},]*/// ❗ Don't pass the `name` directly to the `src` of a media elementconstvideoName =files [0].name ;// ✅ Wrap it in staticFile() instead or use `src`constvideoSrc =files [0].src ;// Find a file by it's name and import itconstdata =files .find ((f ) => {returnf .name === "video.mp4";}) asStaticFile ; // Use `as StaticFile` to assert the file exists// Use the `src` property to get a src to pass to a media element<Video src ={data .src } />;
example.tstsx
import {getStaticFiles ,StaticFile ,Video } from "remotion";constfiles =getStaticFiles ();/*[{"name": "video.mp4","src": "/static-7n5spa/video.mp4","sizeInBytes": 432944,"lastModified": 1670170466865},{"name": "assets/data.json","src": "/static-7n5spa/assets/data.json","sizeInBytes": 1311,"lastModified": 1670170486089},]*/// ❗ Don't pass the `name` directly to the `src` of a media elementconstvideoName =files [0].name ;// ✅ Wrap it in staticFile() instead or use `src`constvideoSrc =files [0].src ;// Find a file by it's name and import itconstdata =files .find ((f ) => {returnf .name === "video.mp4";}) asStaticFile ; // Use `as StaticFile` to assert the file exists// Use the `src` property to get a src to pass to a media element<Video src ={data .src } />;
API
Takes no arguments and returns an array of object, each of which have three entries:
name
: The path relative to the public folder.noteContains forward slashes
/
even on Windows.src
: The path with a prefix. The prefix changes whenever the preview server reloads.sizeInBytes
: The file size. If it is a symbolic link, the file size of the original is reported.lastModified
: Last modified date in Unix timestamp in milliseconds.
Maximum files
For performance, only the first 1000 items are fetched and displayed.