github.com/muxinc/mux-go@v1.1.1/model_input_track.go (about) 1 // Mux Go - Copyright 2019 Mux Inc. 2 // NOTE: This file is auto generated. Do not edit this file manually. 3 4 package muxgo 5 6 type InputTrack struct { 7 Type string `json:"type,omitempty"` 8 Duration float64 `json:"duration,omitempty"` 9 Encoding string `json:"encoding,omitempty"` 10 Width int64 `json:"width,omitempty"` 11 Height int64 `json:"height,omitempty"` 12 FrameRate float64 `json:"frame_rate,omitempty"` 13 SampleRate int64 `json:"sample_rate,omitempty"` 14 SampleSize int64 `json:"sample_size,omitempty"` 15 Channels int64 `json:"channels,omitempty"` 16 }