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
| import subprocess | |
| import json | |
| import re | |
| import sys | |
| from pathlib import Path | |
| from typing import Optional, List | |
| # 定数 | |
| AB_AV1_EXECUTABLE = "ab-av1.exe" | |
| FFPROBE_EXECUTABLE = "ffprobe" |
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
| for %%i in (*.wav) do ffmpeg -i "%%~ni.wav" -ac 2 -acodec flac -f flac "%%~ni.flac" |
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
| setInterval(function() { | |
| window.scrollBy(0, window.innerHeight); | |
| const elements = document.getElementsByClassName("r-1ny4l3l"); | |
| for (let i = 0; i < elements.length; i++) { | |
| const e = elements[i]; | |
| const label = e.getAttribute("aria-label"); | |
| if (!label) | |
| continue; | |
| if (label.includes("さんのミュートを解除")){ |
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
| # MIT LICENSE: Copyright (c) 2020, yanorei32 All rights reserved. | |
| import random | |
| base = list("でっどぷろとたいぷえちえちしすこんしゃっきん") | |
| def getName(length=4): | |
| return ''.join([random.choice(base) for _ in range(length)]) | |
| def main(): | |
| for _ in range(200): |