2023-03-14 18:00:55 +01:00
|
|
|
package ffmpeg
|
|
|
|
|
|
|
|
// Options represents transcoding options.
|
|
|
|
type Options struct {
|
2023-06-28 15:22:52 +02:00
|
|
|
Bin string
|
|
|
|
Encoder AvcEncoder
|
|
|
|
Bitrate string
|
|
|
|
MapVideo string
|
|
|
|
MapAudio string
|
|
|
|
Resolution string
|
2023-03-14 18:00:55 +01:00
|
|
|
}
|