Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (29)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3751)

  • hwcontext_vaapi : Try the first render node as the default DRM device

    29 juillet 2016, par Mark Thompson
    hwcontext_vaapi : Try the first render node as the default DRM device
    

    If no string argument is supplied when av_hwdevice_ctx_create() is
    called to create a VAAPI device, we currently only try the default
    X11 display (that is, $DISPLAY) to find a device, and will therefore
    fail in the absence of an X server to connect to. Change the logic
    to also look for a device via the first DRM render node (that is,
    "/dev/dri/renderD128"), which is probably the right thing to use in
    most simple configurations which only have one DRM device.

    (cherry picked from commit 121f34d5f0c8d7d376829a467590fbbe4c228f4f)

    • [DH] libavutil/hwcontext_vaapi.c
  • Anomalie #3757 (Fermé) : Indication de mise à jour dans l’espace privé.

    22 mars 2016, par svpip -

    Vérifier sur SPIP 3.1.0 sans aucun ajout personnel ni plugin.

    Absence d’indication de mise à jour d’une nouvelle version de SPIP depuis le pied de page de l’espace privé.

    Aujourd’hui mardi 22 mars 2016, l’info reste inchangée (alors que la versions 3.1.1 est sortie depuis le 10 mars 2016) :

    " SPIP 3.1.0 [22707] est un logiciel libre distribué sous licence GPL.
    + écran de sécurité 1.2.2 "

  • How to render animated content in backend using nodejs ?

    29 novembre 2018, par user9964622

    I have created animation using tweenjs and createjs libraries createjs and tweenjs, now, I’d like to convert these animations to video files (MPEG4, or other, doesn’t matter) or how can I render it in the backend using nodejs ?

    I have animation looking like this : Animated

    Here is solution I have tried so far using nodejs and ffmpeg module

    var express = require('express');
    var cors = require('cors')
    var path = require('path');
    var app = express();
    var ffmpeg = require('ffmpeg');
    //Cors Middleware
    app.use(cors());
    // Body Parser Middleware
    app.use(bodyParser.json())
    // Port Number
    const port = process.env.PORT || 8000;
    //video processing

    try {
       var process = new ffmpeg('/path/to/your_movie.mp4');
       process.then(function (video) {

           video
           .setVideoSize('640x?', true, true, '#fff')
           .audioCodec('libmp3lame')
           .videoCodec('libx264')
           .setAudioCodec('libfaac')
           .setAudioChannels(2)
           .save('/path/to/save/your_movie.mp4', function (error, file) {
               if (!error)
                   console.log('Video file: ' + file);
           });

       }, function (err) {
           console.log('Error: ' + err);
       });
    } catch (e) {
       console.log(e.code);



    app.use('/video', video);
    app.get('/', (req, res) => {
     res.send('invaild endpoint');
    });

    app.get('*', (req, res) => {
     res.sendFile(path.join(__dirname + '/video-client/dist/video-client/index.html'));
    });

    // Start Server
    app.listen(port, () => {
     console.log('Server started on port '+port);
    });

    Here is tutorial of what I want to achieve but its written in js and PHP , I want the same but in nodejs html canvas animations to video

    I am new to nodejs and backend stuff in general, unfortunately, my solution does not work so far, and I am stuck. I need help

    Is this the right way to create video from animation if not what is the best way ? ,

    please help, any suggestion or tutorials will be appreciated, thanks