Giter Club home page Giter Club logo

Comments (8)

thijstriemstra avatar thijstriemstra commented on August 15, 2024

Inside the finishRecord handler you can upload the blob to a serverside script. For example using jQuery.ajax:

player.on('finishRecord', function()
{
    var fd = new FormData();
    fd.append('fname', 'test.webm');
    fd.append('data', player.recordedData);
    $.ajax({
        type: 'POST',
        url: '/upload.php',
        data: fd,
        processData: false,
        contentType: false
    }).done(function(data) {
        console.log(data);
    });
});

from videojs-record.

thijstriemstra avatar thijstriemstra commented on August 15, 2024

Full explanation and code on http://stackoverflow.com/a/18254775

from videojs-record.

jabrena avatar jabrena commented on August 15, 2024

I handle the front-end request using Node.js:

/*jslint node: true*/
"use strict";

var bodyParser = require('body-parser');
var multer = require('multer');
var express = require('express');
var app = express();
var http = require('http').Server(app);
var upload = multer({ dest: 'uploads/' });
var jsonParser = bodyParser.json();
app.use(jsonParser);

//REST
app.post('/upload/', upload.single('file'), function (req, res) {
    console.log(req.headers);

    console.log(req.file.filename);

    return res.end();
});

//Templating
app.use(express.static(__dirname + '/public'));

//Server
var localPort = process.env.VCAP_APP_PORT || 3000;
http.listen(localPort, function () {
    console.log('Listening on *:' + localPort);
});

Client side:

  var fd = new FormData();
  fd.append('fname', 'test.webm');
  fd.append('file', player.recordedData);
  $.ajax({
      type: 'POST',
      url: '/upload/',
      data: fd,
      processData: false,
      contentType: false
  }).done(function() {
      console.log("ok");
  });

from videojs-record.

thijstriemstra avatar thijstriemstra commented on August 15, 2024

I'm not familiar with node but I assume you figured it out?

from videojs-record.

jabrena avatar jabrena commented on August 15, 2024

Yes, I understood your Client script and I adapted a old code to upload the Blog to the server.

If you like, I could do a pull request with a clean example with node.js if you like

from videojs-record.

thijstriemstra avatar thijstriemstra commented on August 15, 2024

No, thanks, there are many backend languages to choose from and documenting these things is better to keep in tickets like this imo.

from videojs-record.

jabrena avatar jabrena commented on August 15, 2024

Oki

from videojs-record.

nascent avatar nascent commented on August 15, 2024

Hi,

I would like to know if this works for both Audio and Video.

It appears that the WebRTC Experiment does not work consistently across platforms, and while that may not be a fault of the library, it would seem difficult or impossible to record anytime or anywhere on any device, at this stage; whatever progress has been made, in relation to MediaRecorder and WebRTC.

Best of luck

from videojs-record.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.