remotion-dev/remotion





The issue has been solved
By default, put the video in an `out` folder #518
JonnyBurger posted onGitHub
This simplifies the .gitignore template by allowing to just ignore the out
directory instead of unignoring the .mp4 files in the src
folder and also think it's nice to have a dedicated folder.
cc @aVileBroker who came up with the idea
š This issue is eligible for Hacktoberfest! In addition to helping you get a contribution towards your Hacktoberfest reward, Remotion pays a $100 bounty for it!
Read: How to contribute to Remotion
- Let us know when you are interested in this issue, and we'll assign you!
- In order to prevent issues from getting stuck, try to progress the issue by opening a PR and adding commits. If your progress is stale for 7 days, another user can ask to take over the issue.
Approval criteria for this PR:
- Change
packages/cli/src/render.tsx
so that if you render the video into a folder, and that folder doesn't exist, you create it. The following command should work in theexample
folder:npx remotion render src/index.tsx react-svg any/nested/folder/video.mp4
- Go through all the templates we support, and instead of rendering to
out.mp4
, render toout/video.mp4
(adjust the script inpackage.json
). Make a separate PR for each of those templates! - Also remove the
**.mp4
references in the.gitignore
of the templates, and addout
instead.