Video Streaming With Nodejs And Express
I'm trying to stream videos to an html5 video player using nodejs and express. Many people have done this before from what I can find, however very few have used express (in what
Solution 1:
I think you should use middleware body-parser
Here is the example:
var express = require('express')
var bodyParser = require('body-parser')
var app = express()
// parse application/x-www-form-urlencoded
app.use(bodyParser.urlencoded({ extended: false }))
// parse application/json
app.use(bodyParser.json())
Post a Comment for "Video Streaming With Nodejs And Express"