VideoTrack constructor

const VideoTrack(
  1. String id,
  2. String? title,
  3. String? language, {
  4. bool? image,
  5. bool? albumart,
  6. String? codec,
  7. String? decoder,
  8. int? w,
  9. int? h,
  10. int? channelscount,
  11. String? channels,
  12. int? samplerate,
  13. double? fps,
  14. int? bitrate,
  15. int? rotate,
  16. double? par,
  17. int? audiochannels,
})

VideoTrack

A video available in Media. This may be selected for output in Player.

Implementation

const VideoTrack(
  super.id,
  super.title,
  super.language, {
  super.image,
  super.albumart,
  super.codec,
  super.decoder,
  super.w,
  super.h,
  super.channelscount,
  super.channels,
  super.samplerate,
  super.fps,
  super.bitrate,
  super.rotate,
  super.par,
  super.audiochannels,
});