Fix warning

This commit is contained in:
Mattia 2021-10-04 13:02:13 +02:00
parent d3316ca220
commit e323a24ba3
3 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import 'package:http_parser/src/media_type.dart';
import 'package:http_parser/http_parser.dart';
import '../../reverse_engineering/models/fragment.dart';
import 'audio_stream_info.dart';
@ -71,7 +71,7 @@ class MuxedStreamInfo implements AudioStreamInfo, VideoStreamInfo {
this.bitrate,
this.audioCodec,
this.videoCodec,
this.videoQualityLabel,
@Deprecated('Use qualityLabel') this.videoQualityLabel,
this.videoQuality,
this.videoResolution,
this.framerate,
@ -79,5 +79,5 @@ class MuxedStreamInfo implements AudioStreamInfo, VideoStreamInfo {
this.qualityLabel);
@override
String toString() => 'Muxed ($tag | $videoQualityLabel | $container)';
String toString() => 'Muxed ($tag | $qualityLabel | $container)';
}

View File

@ -127,7 +127,7 @@ class StreamsClient {
// Muxed or Video-only
if (!videoCodec.isNullOrWhiteSpace) {
var framerate = Framerate(streamInfo.framerate ?? 24);
var videoQualityLabel = streamInfo.videoQualityLabel ?? '';
var videoQualityLabel = streamInfo.qualityLabel;
var videoQuality = VideoQualityUtil.fromLabel(videoQualityLabel);

View File

@ -29,7 +29,7 @@ abstract class VideoStreamInfo extends StreamInfo {
FileSize size,
Bitrate bitrate,
this.videoCodec,
this.videoQualityLabel,
@Deprecated('Use qualityLabel') this.videoQualityLabel,
this.videoQuality,
this.videoResolution,
this.framerate,
@ -50,8 +50,7 @@ extension VideoStreamInfoExtension<T extends VideoStreamInfo> on Iterable<T> {
/// a collection of video streams.
/// This could be longer than [getAllVideoQualities] since this gives also all
/// the different framerate values.
Set<String> getAllVideoQualitiesLabel() =>
map((e) => e.videoQualityLabel).toSet();
Set<String> getAllVideoQualitiesLabel() => map((e) => e.qualityLabel).toSet();
/// Gets the stream with best video quality.
T withHighestBitrate() => sortByVideoQuality().last;