Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (30)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5909)

  • How to stream an webm video through ffmpeg using node.js ?

    4 juillet 2012, par Marcos Lopes

    I have built an node.js server that gets ffmpeg video and pass it to all listeners connected, but the video doesn't play. What i'm doing wrong ?

    Here is my ffmpeg command and output : http://pastebin.com/56BMrx7V

    and in my node.js app :

    var http = require('http');

    var server = http.createServer(function(req, res) {  
       if (req.url === '/listen') {  
           listen(req, res);  
       } else if (req.url === '/publish' && req.method === 'POST') {  
           stream(req, res);  
       }  
    });

    var stream = require('stream');  
    var writeStream = new stream.Stream();  
    var listeners = [];  

    writeStream.writable = true;  

    writeStream.write = function(data) {  
       listeners.forEach(function(listener) {  
           listener.write(data);  
       });  
    };  

    writeStream.end = function() {  
       listeners.forEach(function(listener) {  
           listener.end();  
       });  
    };  

    var listen = function(req, res) {  
       listeners.push(res);  

       res.writeHead(200, {  
           'Date': new Date().toUTCString(),  
           'Connection': 'close',  
           'Content-Type': 'video/webm',  
           'Transfer-Encoding': 'chunked'  
       });  
    };  

    var stream = function(req, res) {  
       req.on('data', function(data) {  
           writeStream.write(data);  
       });  

       req.on('end', function() {  
           writeStream.end();  
       });  
    }

    server.listen(3000);  
    console.log('Listening on localhost port 3000');

    Thanks.

  • ftp: reconnect on read

    27 mai 2013, par Lukasz Marek
    ftp: reconnect on read
    

    FTP server may disconnect after some period of time when no transfer is done.

    FTP protocol should reconnect and seek to last position.

    • [DH] libavformat/ftp.c
  • Pass the file type as contentType argument to the Blob.slice call.

    4 décembre 2012, par Sebastian Tschan

    m js/jquery.fileupload.js m server/php/UploadHandler.php Pass the file type as contentType argument to the Blob.slice call. Remove the obsolete Content-Description header, which isn’t necessary anymore to transfer the file type for Blob (...)