iTranslated by AI
The content below is an AI-generated translation. This is an experimental feature, and may contain errors. View original article
🐕
Lessons Learned from Setting Up FFmpeg for Minecraft's Replay Mod
Introduction
- This article was written as a memorandum.
Conclusion
- Download FFmpeg
- You can specify the PATH from Replay MOD
- You don't need to add it to your PATH
Installing FFmpeg
Install the pre-built version
Replay MOD Settings
- Enter the FFmpeg PATH in the input field at the bottom left of the output screen.
- Be careful as the scroll bar might not be visible.
The following operations are not required to run Replay MOD
Creating .zshrc
- (Not recommended) When creating with Mac TextEdit
- You can disable rich text using
command + t - I tried this, but it was a hassle
- You can disable rich text using
- (Recommended) It is better to generate it from the terminal using
touch- Generate with
touch .zshrc
- Generate with
Setting the PATH
export PATH=/Applications:$PATH
Displaying File Extensions
- (Not recommended) When created with Mac's TextEdit, the extension was .txt
- Show extensions to reduce mistakes
Applying the PATH
source ~/.zshrc
If it doesn't work
- Restart the terminal
References
Discussion