-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathjob.go
69 lines (60 loc) · 2.24 KB
/
job.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package astiencoder
import "github.com/asticode/go-astitools/float"
// Job represents a job
type Job struct {
Inputs map[string]JobInput `json:"inputs"`
Operations map[string]JobOperation `json:"operations"`
Outputs map[string]JobOutput `json:"outputs"`
}
// JobInput represents a job input
type JobInput struct {
URL string `json:"url"`
}
// Job output types
const (
// The packet data is dumped directly to the url without any mux
JobOutputTypePktDump = "pkt_dump"
)
// JobOutput represents a job output
type JobOutput struct {
// Possible values are "default" and "pkt_dump"
Type string `json:"type,omitempty"`
URL string `json:"url"`
}
// Job operation codecs
const (
JobOperationCodecCopy = "copy"
)
// JobOperation represents a job operation
// This can usually be compared to an encoding
// Refrain from indicating all options in the dict and use other attributes instead
type JobOperation struct {
BitRate *int `json:"bit_rate,omitempty"`
// Possible values are "copy" and all libav codec names.
Codec string `json:"codec,omitempty"`
Dict string `json:"dict,omitempty"`
// Frame rate is a per-operation value since we may have different frame rate operations for a similar output
FrameRate *astifloat.Rational `json:"frame_rate,omitempty"`
GopSize *int `json:"gop_size,omitempty"`
Height *int `json:"height,omitempty"`
Inputs []JobOperationInput `json:"inputs"`
Outputs []JobOperationOutput `json:"outputs"`
PixelFormat string `json:"pixel_format,omitempty"`
ThreadCount *int `json:"thread_count,omitempty"`
// Since frame rate is a per-operation value, time base is as well
TimeBase *astifloat.Rational `json:"time_base,omitempty"`
Width *int `json:"width,omitempty"`
}
// JobOperationInput represents a job operation input
// TODO Add start, end and duration (use seek?)
type JobOperationInput struct {
// Possible values are "audio", "subtitle" and "video"
MediaType string `json:"media_type,omitempty"`
Name string `json:"name"`
PID *int `json:"pid,omitempty"`
}
// JobOperationOutput represents a job operation output
type JobOperationOutput struct {
Name string `json:"name"`
PID *int `json:"pid,omitempty"`
}