youtube_explode/lib/src/videos/streams/audio_stream_info.dart

7 lines
135 B
Dart
Raw Normal View History

2020-06-05 16:17:08 +02:00
import 'streams.dart';
2020-06-03 13:18:37 +02:00
/// YouTube media stream that contains audio.
mixin AudioStreamInfo on StreamInfo {
String get audioCodec;
2020-06-03 13:18:37 +02:00
}