name: ffmpeg description: Using FFmpeg and FFprobe in Remotion metadata:
ffmpeg and ffprobe do not need to be installed. They are available via the bunx remotion ffmpeg and bunx remotion ffprobe:
bunx remotion ffmpeg -i input.mp4 output.mp3 bunx remotion ffprobe input.mp4
You have 2 options for trimming videos:
# Re-encodes from the exact frame bunx remotion ffmpeg -ss 00:00:05 -i public/input.mp4 -to 00:00:10 -c:v libx264 -c:a aac public/output.mp4
trimBefore and trimAfter props of the <Video> component. The benefit is that this is non-destructive and you can change the trim at any time.import { Video } from "@remotion/media";
<Video
src={staticFile("video.mp4")}
trimBefore={5 * fps}
trimAfter={10 * fps}
/>;