Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haveyouwantto/MCBE-video-generator
https://github.com/haveyouwantto/MCBE-video-generator
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/haveyouwantto/MCBE-video-generator
- Owner: haveyouwantto
- License: gpl-3.0
- Created: 2019-06-13T13:48:20.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T15:57:31.000Z (4 months ago)
- Last Synced: 2024-11-08T03:03:51.820Z (3 months ago)
- Language: Java
- Size: 39.1 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-minecraft-bedrock - MCPE-VideoGenerator - Minecraft Video Generator by HYWT (Tool (Create) / Addons and GameTest)
README
### Minecraft Video Generator by HYWT
#### **Requirements:**
1. Install [**ffmpeg**](https://ffmpeg.org/).
2. Allocate at least **4 GB of memory** for Minecraft.#### **How to Generate a Video:**
1. **Install ffmpeg** (if not already installed).
2. **Extract Images and Audio** from your video:
Run this command in your terminal:
```bash
ffmpeg -i -vf scale=: -r 20 ./output/img%05d.png -vn ./output/audio.ogg
```
- **``**: Your video file.
- **`:`**: Resolution (e.g., 320x180).
- **`-r 20`**: Frame rate (20 FPS recommended).
- **Output**: Images (`img%05d.png`) and audio (`audio.ogg`) will be saved to the `output/` folder.**Tip**: Higher resolution or more frames require more memory (e.g., 320x180 with 3000 frames = 2750 MB of memory).
3. **Open the Video Generator application.**
4. **Select input and output folders.**
- **Input folder**: Where your extracted images and audio are stored.
- **Output folder**: Where the generated Minecraft pack will be saved.5. **Configure output settings** as per your video and Minecraft setup.
6. **Generate the Pack** by clicking the "Generate Pack" button.
7. **Copy the pack** to your Minecraft resource pack folder:
- **Windows**: `%appdata%/.minecraft/resourcepacks`
- **Mac**: `~/Library/Application Support/minecraft/resourcepacks`
- **Linux**: `~/.minecraft/resourcepacks`8. **Load Minecraft**, go to settings, and activate the pack.
9. **Get a repeating command block** in-game by typing:
```bash
/give @s repeating_command_block
```10. **Set up the command block** with this command:
```bash
/execute @p ~ ~ ~ function /tick
```
- Replace `` with the name of your generated pack.11. In chat, run the initialization command:
```bash
/function /init
```12. **Enjoy** your video within Minecraft!