-
-
Save david-mark/0e1925c31c189908fe38709f683d74f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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