getMuxededStreams method

Future<Map<String, dynamic>> getMuxededStreams(
  1. String videoId, {
  2. int audioBitrate = 320,
  3. String videoQuality = '1080p',
  4. String? audioCodec,
  5. String? videoCodec,
  6. bool includeVideo = true,
  7. bool includeAudio = true,
})

Gets unified streams (video + audio) for a YouTube video

Implementation

Future<Map<String, dynamic>> getMuxededStreams(
  String videoId, {
  int audioBitrate = 320,
  String videoQuality = '1080p',
  String? audioCodec,
  String? videoCodec,
  bool includeVideo = true,
  bool includeAudio = true,
}) {
  throw UnimplementedError('getUnifiedStreams() has not been implemented.');
}