157c6c723a
Signed-off-by: Michael Mayer <michael@photoprism.app>
10 lines
172 B
Go
10 lines
172 B
Go
package ffmpeg
|
|
|
|
// Options represents transcoding options.
|
|
type Options struct {
|
|
Bin string
|
|
Encoder AvcEncoder
|
|
Bitrate string
|
|
MapVideo string
|
|
MapAudio string
|
|
}
|