Anime OP/ED missing from the Summer 2024 playlist.
- "Oshi no Ko Season 2"
OP: FataleED: Burning
- 2.5-jigen no Ririsa
OP1: Shutter ChanceED1: Watch Me
- Atri: My Dear Moments
OP: Ano Hikari
| #!/usr/bin/env bash | |
| set -x | |
| find ~/KaraokeMugen/repos/kara.moe/json/karaokes/ -type f -name '*.kara.json' \ | |
| -exec jq --arg kid $1 '.data | select(.kid==$kid) | .titles' {} + |
Anime OP/ED missing from the Summer 2024 playlist.
| #!/usr/bin/env python3 | |
| import os | |
| for filename in os.listdir('.'): | |
| with open(filename, 'r', encoding='utf8') as f: | |
| playresx = None | |
| playresy = None | |
| size = [] | |
| for line in f: | |
| if line.startswith('PlayResX: '): |
Anime OP/ED missing from the Fall 2024 playlist.
| #!/usr/bin/env python3 | |
| '''Get stats about resolution of .ass''' | |
| import datetime | |
| import os | |
| import subprocess | |
| import matplotlib.pyplot as plt | |
| import matplotlib.dates as mdates | |
| from xdg import xdg_data_dirs | |
| import yaml |
Anime OP/ED missing from the Winter 2025 playlist.
Anime OP/ED missing from the Spring 2025 playlist.
| local tr = aegisub.gettext | |
| script_name = tr"Trim karaoke lines" | |
| script_description = tr"Remove first and last k-tags and adjust start and end times accordingly" | |
| l_script_description = tr"Remove first k-tag and adjust start time accordingly" | |
| l_script_name = tr"Trim karaoke lines - Left" | |
| r_script_name = tr"Trim karaoke lines - Right" | |
| r_script_description = tr"Remove last k-tag and adjust end time accordingly" |
Anime OP/ED missing from the Summer 2025 playlist.
| #!/usr/bin/env python3 | |
| '''Check for synched off-vocal versions''' | |
| import os | |
| import sys | |
| import hashlib | |
| import json | |
| BUF_SIZE = 65535 | |
| OFF_VOCAL_TAG = 'c0cc87b9-55b9-40f0-878a-fbb9e34c151e' |