From 37f4a130325477cf10d4f9fd36b82998c78879b6 Mon Sep 17 00:00:00 2001 From: Stepan Bujnak Date: Wed, 22 Nov 2023 20:47:16 +0100 Subject: [PATCH] Added debug_info field to the Segment type (#45) --- common.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.go b/common.go index 5a780a7..f6f0f3c 100644 --- a/common.go +++ b/common.go @@ -35,4 +35,6 @@ type Segment struct { AudioPitch *int64 `json:"audio_pitch"` AudioSpeed *int64 `json:"audio_speed"` MelodyTransposition *int64 `json:"melody_transposition"` + + DebugInfo any `json:"debug_info,omitempty"` }