VLC can play the video! Open HOLME.RM and choose the second video and second audio track using the menu.
--
ffplay plays it just fine by default, but neither VLC nor mpv does, that's rare! Funny I found this thread while searching for a particular discussion about ffplay.
Looking at its output, libav thinks the file has 15 streams: 5 data, 3 audio, and 7 video. Of these only the mentioned two are playable. Evidently ffplay uses ffmpeg's probing and stream selection, while the other players just try to play the first of each type.
Of the other streams, ffmpeg `-c copy -f data` can only dump two of the data streams. These contain the names of the HTM files and what looks like more compressed data. Searching turns up nothing but other university websites describing how to use it - this synchronized slideshow format (apparently not SMIL) looks lost indeed.
note to self: mpv can be started with `--aid=2 --vid=2` (1-indexed), but VLC has only `--audio-track=1` (0-indexed) and lacks a video track option despite having an open issue since 2009. For completeness, ffplay would use `-ast 6 -vst 9` (undifferentiated and 0-indexed).
--
ffplay plays it just fine by default, but neither VLC nor mpv does, that's rare! Funny I found this thread while searching for a particular discussion about ffplay.
Looking at its output, libav thinks the file has 15 streams: 5 data, 3 audio, and 7 video. Of these only the mentioned two are playable. Evidently ffplay uses ffmpeg's probing and stream selection, while the other players just try to play the first of each type.
Of the other streams, ffmpeg `-c copy -f data` can only dump two of the data streams. These contain the names of the HTM files and what looks like more compressed data. Searching turns up nothing but other university websites describing how to use it - this synchronized slideshow format (apparently not SMIL) looks lost indeed.
note to self: mpv can be started with `--aid=2 --vid=2` (1-indexed), but VLC has only `--audio-track=1` (0-indexed) and lacks a video track option despite having an open issue since 2009. For completeness, ffplay would use `-ast 6 -vst 9` (undifferentiated and 0-indexed).