youtube_explode/lib/src/reverse_engineering/responses/stream_info_provider.dart

45 lines
589 B
Dart

///
abstract class StreamInfoProvider {
///
static final RegExp contentLenExp = RegExp(r'clen=(\d+)');
///
int get tag;
///
String get url;
///
String? get signature => null;
///
String? get signatureParameter => null;
///
int? get contentLength => null;
///
int? get bitrate;
///
String? get container;
///
String? get audioCodec => null;
///
String? get videoCodec => null;
///
String? get videoQualityLabel => null;
///
int? get videoWidth => null;
///
int? get videoHeight => null;
///
int? get framerate => null;
}