title property
String
get
title
Implementation
String get title {
switch (this) {
case NyxVideoCodec.h264:
return 'Advanced Video Coding (AVC)';
case NyxVideoCodec.h265:
return 'High Efficiency Video Coding (HEVC)';
case NyxVideoCodec.xvid:
return 'Xvid MPEG-4 Video Codec';
case NyxVideoCodec.vp8:
return 'On2 VP8';
case NyxVideoCodec.vp9:
return 'Google VP9';
case NyxVideoCodec.av1:
return 'AOMedia Video 1';
case NyxVideoCodec.mpeg4:
return 'MPEG-4 Part 2';
case NyxVideoCodec.mpeg2:
return 'MPEG-2 Video';
}
}