Either an unrecoverable error happened while attempting to seek, or the underlying stream is not seekable (additional information will be provided when possible). The stream is guaranteed to be left in a valid state, but the position may be reset.
| 41 | |
| 42 | |
| 43 | class SeekError(Exception): |
| 44 | """Either an unrecoverable error happened while attempting to seek, or the underlying |
| 45 | stream is not seekable (additional information will be provided when possible). |
| 46 | |
| 47 | The stream is guaranteed to be left in a valid state, but the position may be reset.""" |
| 48 | |
| 49 | ... |
| 50 | |
| 51 | |
| 52 | class VideoOpenFailure(Exception): |