(self, s)
| 1125 | return self._data_and_metadata() |
| 1126 | |
| 1127 | def _find_ext(self, s): |
| 1128 | base, ext = splitext(s) |
| 1129 | |
| 1130 | if not ext: |
| 1131 | return base |
| 1132 | |
| 1133 | # `splitext` includes leading period, so we skip it |
| 1134 | return ext[1:].lower() |
| 1135 | |
| 1136 | |
| 1137 | class Video(DisplayObject): |