I'm running into an issue with .VOB file playback through the web client(the same happens on mobile). The server is running behind Nginx reverse proxy(although the playback doesn't work when accessing locally either). When trying to play uploaded VOB files, I'm getting this error:
HTTP "Content-Type" of "video/mpeg" is not supported. Load of media resource https://[domain]/api/assets/[hash]/video/playback failed.Cannot play media. No decoders for requested formats: video/mpeg
HTTP "Content-Type" of "video/mpeg" is not supported. Load of media resource https://[domain]/api/assets/[hash]/video/playback failed.Cannot play media. No decoders for requested formats: video/mpeg
The issue seems to be that while VOB files are in the supported formats list (which is probably why re-encoding/transcoding options don't work for them), they're being served with video/mpeg MIME type that the browser can't seem to handle for playback.
I'd prefer not to enable transcoding for all videos since most of my library plays fine as-is. Is there a way to either:
1. Fix the MIME type being served for VOB files specifically? 2. Or force selective transcoding just for VOB files without affecting other formats?
Any help on the best approach would be appreciated! Thanks!