How can I generate the clearest MP4 video? #1973
-
I made a MP4 video, but the clarity is not enough. How can I set it to make the video the clearest? Any help would be appreciated for exmaple, I think the text is not clear enough. the video properties: Here are some of my code: // remotion.config.ts import {Config} from 'remotion';
Config.setImageFormat('jpeg');
Config.setOverwriteOutput(true);
Config.setPort(3009);
Config.setVideoBitrate('1M'); // Root.tsx <Composition
id="Test"
component={Test}
fps={60}
durationInFrames={20 * 60}
width={1920}
height={1080}
/> npx remotion render Test out/video.mp4 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Instead of video bitrate, I recommend Also, consider increasing the resolution of the video to 4k! ( Another solution is to render ProRes video instead, which can be lossless with the right settings! |
Beta Was this translation helpful? Give feedback.
Instead of video bitrate, I recommend
setCrf(1)
instead.Also, consider increasing the resolution of the video to 4k! (
--scale=2
)Since if you are on a high-res display, 1920x1080 will not fill out all the pixels 🙂
Another solution is to render ProRes video instead, which can be lossless with the right settings!