83d10ea00e
* Adds resolution limit * Fixes 2 video filters and makes the env variable work * Adds FFMPEG_RESOLUTION to all the docker-compose files
11 lines
201 B
Go
11 lines
201 B
Go
package ffmpeg
|
|
|
|
// Options represents transcoding options.
|
|
type Options struct {
|
|
Bin string
|
|
Encoder AvcEncoder
|
|
Bitrate string
|
|
MapVideo string
|
|
MapAudio string
|
|
Resolution string
|
|
}
|