This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import subprocess, sys, shutil | |
| from pathlib import Path | |
| # --- Config ------------------------------------------------------------- | |
| # Will try all methods until one works: vulkan -> cuda -> opencl | |
| # Encoder: h264_nvenc is fast and widely compatible on NVIDIA. | |
| # You can switch to "hevc_nvenc" or "av1_nvenc" if you prefer. | |
| VIDEO_ENCODER = "h264_nvenc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="parentA"> | |
| <span>hello!</span> | |
| </div> | |
| <div id="parentB"> | |
| <span>hello!</span> | |
| </div> |