mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
Use int64 for sample-related FFProbeStream fields (#4361)
This commit is contained in:
parent
2ef2d89b06
commit
26c3873122
1 changed files with 2 additions and 2 deletions
|
|
@ -64,7 +64,7 @@ type FFProbeStream struct {
|
||||||
VisualImpaired int `json:"visual_impaired"`
|
VisualImpaired int `json:"visual_impaired"`
|
||||||
} `json:"disposition"`
|
} `json:"disposition"`
|
||||||
Duration string `json:"duration"`
|
Duration string `json:"duration"`
|
||||||
DurationTs int `json:"duration_ts"`
|
DurationTs int64 `json:"duration_ts"`
|
||||||
HasBFrames int `json:"has_b_frames,omitempty"`
|
HasBFrames int `json:"has_b_frames,omitempty"`
|
||||||
Height int `json:"height,omitempty"`
|
Height int `json:"height,omitempty"`
|
||||||
Index int `json:"index"`
|
Index int `json:"index"`
|
||||||
|
|
@ -78,7 +78,7 @@ type FFProbeStream struct {
|
||||||
RFrameRate string `json:"r_frame_rate"`
|
RFrameRate string `json:"r_frame_rate"`
|
||||||
Refs int `json:"refs,omitempty"`
|
Refs int `json:"refs,omitempty"`
|
||||||
SampleAspectRatio string `json:"sample_aspect_ratio,omitempty"`
|
SampleAspectRatio string `json:"sample_aspect_ratio,omitempty"`
|
||||||
StartPts int `json:"start_pts"`
|
StartPts int64 `json:"start_pts"`
|
||||||
StartTime string `json:"start_time"`
|
StartTime string `json:"start_time"`
|
||||||
Tags struct {
|
Tags struct {
|
||||||
CreationTime json.JSONTime `json:"creation_time"`
|
CreationTime json.JSONTime `json:"creation_time"`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue