Returns true if the given uri matches the format of an .m3u8 media segment, such as a .ts file.
true
uri
.m3u8
.ts
@override bool matchM3u8Segment(Uri uri) { return uri.path.toLowerCase().endsWith('.ts'); }