aves_mio1/lib/model/media/video/codecs.dart
FabioMich66 19a982ede6
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-03-05 15:51:30 +01:00

16 lines
469 B
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';
}