Skip to content

Instantly share code, notes, and snippets.

@thibauts
Last active December 31, 2023 09:52
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thibauts/5f5f8d8ce6566c8289e6 to your computer and use it in GitHub Desktop.
Save thibauts/5f5f8d8ce6566c8289e6 to your computer and use it in GitHub Desktop.
var express = require('express');
var subtitlesUrl = 'http://your-local-ip:8000/subtitles.vtt';
var app = express();
app.use(function(req, res, next) {
res.header('transferMode.dlna.org', 'Streaming');
res.header('contentFeatures.dlna.org', 'DLNA.ORG_OP=01;DLNA.ORG_CI=0;DLNA.ORG_FLAGS=01700000000000000000000000000000')
res.header('CaptionInfo.sec', subtitlesUrl);
next();
});
app.use('/', express.static(__dirname));
app.listen(8000, '0.0.0.0');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment