cmd/streamdata: format mirror field

This is useful for referring to the corresponding YouTube video.

Signed-off-by: Yonah <contrib@gensokyo.uk>
This commit is contained in:
2026-03-20 03:04:18 +09:00
parent 140f2a3b0f
commit ebb49770e7

View File

@@ -18,4 +18,7 @@ func printVOD(v *streamdata.VOD) {
} else {
fmt.Printf("YouTube : %s | %s\n", v.Title, date)
}
if v.Mirror != "" {
fmt.Println("Mirror :", v.Mirror)
}
}