issues
search
vincelavang
/
facemap
A web app for advertisers who want to get feedback through emotional responses to their video ad.
0
stars
0
forks
source link
User can capture video of viewer.
#2
Open
vincelavang
opened
7 years ago
vincelavang
commented
7 years ago
Motivation
User can record video of viewer.
Implementation
[x] Create wireframe.
[x] Add express dependency, require, and use the express.static middleware to serve files to HTTP.
[x] Have app listen on 3000.
[x] Add React Multimedia Capture as a dependency and make a component to use camera/record.
[x] Require multer to upload video to server.
[x] Register a POST route to '/uploads' and respond with status code '200.'
[x] Create a new FormData method to upload blob to '/uploads.'
[x] Require 'ffmpeg' and write a function that converts webm ext. to mp4.
[x] Require convert.js and use convert function in POST route.
[x] Require 'unirest' and create a function that post mp4 to EmoVu Api.
[x] Import function into convert.js
[x] Import VideoRecord component into App class.
vincelavang
commented
7 years ago
Motivation
User can record video of viewer.
Implementation