40 lines
1.1 KiB
Go
40 lines
1.1 KiB
Go
|
// Code generated by sqlc. DO NOT EDIT.
|
||
|
|
||
|
package store
|
||
|
|
||
|
import (
|
||
|
"database/sql"
|
||
|
"time"
|
||
|
|
||
|
"github.com/google/uuid"
|
||
|
)
|
||
|
|
||
|
type MediaSet struct {
|
||
|
ID uuid.UUID
|
||
|
YoutubeID string
|
||
|
AudioYoutubeItag int32
|
||
|
AudioChannels int32
|
||
|
AudioFramesApprox int64
|
||
|
AudioFrames sql.NullInt64
|
||
|
AudioSampleRate int32
|
||
|
AudioRawS3Key sql.NullString
|
||
|
AudioRawS3UploadedAt sql.NullTime
|
||
|
AudioEncodedMimeType string
|
||
|
VideoYoutubeItag int32
|
||
|
VideoS3Key sql.NullString
|
||
|
VideoS3UploadedAt sql.NullTime
|
||
|
VideoMimeType string
|
||
|
VideoDurationNanos int64
|
||
|
VideoThumbnailS3Key sql.NullString
|
||
|
VideoThumbnailS3UploadedAt sql.NullTime
|
||
|
VideoThumbnailMimeType sql.NullString
|
||
|
VideoThumbnailWidth sql.NullInt32
|
||
|
VideoThumbnailHeight sql.NullInt32
|
||
|
CreatedAt time.Time
|
||
|
UpdatedAt time.Time
|
||
|
AudioContentLength int64
|
||
|
VideoContentLength int64
|
||
|
AudioEncodedS3Key sql.NullString
|
||
|
AudioEncodedS3UploadedAt sql.NullTime
|
||
|
}
|