mirror of
https://github.com/xfrr/goffmpeg.git
synced 2026-04-22 23:17:21 +08:00
ec40467798
* cleanup readme & examples * upgrade go version * add makefile with basic commands * add e2e test * add gha * update .gitignore
19 lines
496 B
Go
19 lines
496 B
Go
package media
|
|
|
|
type Format struct {
|
|
Filename string
|
|
NbStreams int `json:"nb_streams"`
|
|
NbPrograms int `json:"nb_programs"`
|
|
FormatName string `json:"format_name"`
|
|
FormatLongName string `json:"format_long_name"`
|
|
Duration string `json:"duration"`
|
|
Size string `json:"size"`
|
|
BitRate string `json:"bit_rate"`
|
|
ProbeScore int `json:"probe_score"`
|
|
Tags Tags `json:"tags"`
|
|
}
|
|
|
|
type Tags struct {
|
|
Encoder string `json:"ENCODER"`
|
|
}
|