ente/mobile/lib/models/ffmpeg/codecs.dart

19 lines
594 B
Dart

// Adapted from: https://github.com/deckerst/aves/blob/4a0009f4f0b63f2c4478e2531be8046c3b2e3320/lib/model/video/codecs.dart
class Codecs {
static const aac = 'aac';
static const ac3 = 'ac3';
static const eac3 = 'eac3';
static const h264 = 'h264';
static const hevc = 'hevc';
static const matroska = 'matroska';
static const mpeg4 = 'mpeg4';
static const mpts = 'mpegts';
static const opus = 'opus';
static const pgs = 'hdmv_pgs_subtitle';
static const subrip = 'subrip';
static const theora = 'theora';
static const vorbis = 'vorbis';
static const webm = 'webm';
}