youtube_explode/lib/src/videos/closed_captions/closed_caption_track_info.dart

43 lines
1.3 KiB
Dart
Raw Normal View History

2020-02-24 14:28:52 +01:00
import 'package:equatable/equatable.dart';
2020-11-02 13:03:56 +01:00
import '../../extensions/helpers_extension.dart';
2020-11-06 22:46:47 +01:00
import 'closed_caption_format.dart';
2020-06-03 23:02:21 +02:00
import 'language.dart';
2020-02-23 20:29:08 +01:00
/// Metadata associated with a certain [ClosedCaptionTrack]
2020-02-24 14:28:52 +01:00
class ClosedCaptionTrackInfo extends Equatable {
2020-02-23 20:29:08 +01:00
/// Manifest URL of the associated track.
final Uri url;
2020-02-23 21:00:35 +01:00
/// Language of the associated track.
2020-02-23 20:29:08 +01:00
final Language language;
2020-02-23 21:00:35 +01:00
/// Whether the associated track was automatically generated.
2020-02-23 20:29:08 +01:00
final bool isAutoGenerated;
2020-11-01 15:05:19 +01:00
/// Track format
final ClosedCaptionFormat format;
2020-02-23 21:00:35 +01:00
/// Initializes an instance of [ClosedCaptionTrackInfo]
2020-11-01 15:05:19 +01:00
const ClosedCaptionTrackInfo(this.url, this.language,
{this.isAutoGenerated = false, this.format})
: assert(format != null);
2020-02-24 14:28:52 +01:00
2020-11-02 13:03:56 +01:00
/// Returns this auto-translated to another language.
/// Keeping the same format.
ClosedCaptionTrackInfo autoTranslate(
ClosedCaptionTrackInfo trackInfo, String lang) {
return ClosedCaptionTrackInfo(
trackInfo.url.replaceQueryParameters({'tlang': lang}),
Language(lang, ''),
isAutoGenerated: trackInfo.isAutoGenerated,
format: trackInfo.format);
}
2020-06-03 23:02:21 +02:00
@override
String toString() => 'CC Track ($language)';
2020-02-24 14:28:52 +01:00
@override
List<Object> get props => [url, language, isAutoGenerated];
2020-02-23 21:00:35 +01:00
}