All checks were successful
build / build (push) Successful in 8m8s
VideoCache.download() opened the connection with URI.create(url).toURL() on the raw URL. URLs whose path has non-ASCII segments (e.g. the Korean ".../음악퀴즈/...") were sent unencoded, so the server answered HTTP 400 and every preload aborted — the disk cache stayed empty and clients fell back to live streaming for every video (instant on a fast host, 10s+/no-show on a slower remote client). FFmpeg tolerates the raw URL, masking the bug at playback time. Encode only the bytes put on the wire; the READY key, sha256 filename, and lookup() all keep the original url string so cache hits still match the anchor's raw URL. Verified: raw URL -> HTTP 400, encoded -> 200. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
457 B
Properties
17 lines
457 B
Properties
org.gradle.jvmargs=-Xmx2G
|
|
org.gradle.parallel=true
|
|
# Config cache disabled — new loom + IntelliJ aren't fully compatible yet
|
|
org.gradle.configuration-cache=false
|
|
|
|
# Mod
|
|
mod_id=video_player
|
|
mod_version=0.4.37
|
|
maven_group=com.ejclaw.videoplayer
|
|
archives_base_name=video_player
|
|
|
|
# Minecraft / Fabric (26.1.2 — single target, intermediary/Yarn retired)
|
|
minecraft_version=26.1.2
|
|
loader_version=0.19.2
|
|
loom_version=1.16-SNAPSHOT
|
|
fabric_version=0.149.0+26.1.2
|