You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+83-3Lines changed: 83 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -261,7 +261,7 @@ This entire section is provided by the "Advanced Yaw Selector" module.
261
261
* Outputs still image files in JPEG format. Lossy compression, smaller file sizes, but lower quality than PNG.
262
262
***Extraction Interval (sec):** Same as for PNG.
263
263
***Quality (1-100):** Specify JPEG quality from 1 (low quality, small size) to 100 (high quality, large size). Default is `90`.
264
-
***Video (HEVC/H.265):**
264
+
***Video (HEVC/H.256):**
265
265
* Outputs each viewpoint as an individual video file (H.265 codec, MP4 container). Audio is not included.
266
266
***Preset:** Specifies the encoding speed vs. compression balance (e.g., `medium`, `slow`). Default is `medium`.
267
267
***CQ/CRF:** Specifies the encoding quality. Lower values mean higher quality (and larger files). Range 0-51, typically 15-28. Default is `18`. (Handled as CQ for CUDA, CRF for CPU).
@@ -439,7 +439,29 @@ If an error occurs during processing, the "Start Conversion" button will become
439
439
440
440
## Appendix 1: How to Install FFmpeg
441
441
442
-
This application uses FFmpeg internally. Please prepare it using the following steps:
442
+
This application uses FFmpeg internally. Please prepare it using one of the following methods.
443
+
444
+
### For Windows Users: Easy Installation via winget (Recommended)
445
+
446
+
For Windows 10/11 users, the easiest way to install FFmpeg is by using the `winget` (Windows Package Manager) command-line tool. This method automatically handles the download, installation, and PATH configuration.
447
+
448
+
1.**Open Windows Terminal (as Administrator):**
449
+
* Click the Start button.
450
+
* Type `Terminal`.
451
+
* Right-click on the "Terminal" app and select "Run as administrator".
452
+
2.**Run the Install Command:**
453
+
* Copy the command below, paste it into the Terminal window, and press Enter.
454
+
```cmd
455
+
winget install FFmpeg
456
+
```
457
+
3. **Approve and Wait:**
458
+
* You might be asked to agree to some terms. If so, type `y` and press Enter.
459
+
* `winget` will then download and install FFmpeg automatically.
460
+
4. **Verify:**
461
+
* **Close the current Terminal window and open a new one.** This is important for the system to recognize the new settings.
462
+
* In the new Terminal, type `ffmpeg -version` and press Enter. If FFmpeg version information is displayed, the setup is successful.
1. **Download:** Download a build for your OS from the official FFmpeg website ([https://ffmpeg.org/download.html](https://ffmpeg.org/download.html)) or other trusted sources.
445
467
* For Windows, builds from gyan.dev or BtbN are common. Choose a `full_build` or `essentials_build` zip file.
@@ -455,7 +477,29 @@ This application uses FFmpeg internally. Please prepare it using the following s
1. **Download:** Download the latest stable installer for Python 3.9 or newer from the official Python website ([https://www.python.org/downloads/](https://www.python.org/downloads/)) (e.g., "Windows installer (64-bit)" for Windows).
479
541
2. **Install (Recommended settings for Windows):**
480
542
1. Run the downloaded installer.
@@ -489,6 +551,24 @@ Python (version 3.9 or newer) and Tkinter (Tk version 8.6 or newer, usually incl
0 commit comments