Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (60)

  • 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 (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5945)

  • using iojs express and fluent-ffmpeg

    9 mai 2015, par edwardsmarkf

    i am trying to create a simple io.js that will read an opus file, convert it to mp3, and pass it to a webpage using express. here is what i have tried so far :

    var express = require('express');
    var ffmpeg = require('fluent-ffmpeg');
    var app = express();
    var fs = require('fs');

    app.get ('/ffmpegTest', function(req,res) {
         var stream = fs.createWriteStream('tester.mp3');
         ffmpeg('./tester.opus')
            .audioCodec('libmp3lame')
            .output(stream, {end:true})
               // tested to make sure it worked .saveToFile('./testerTEST.mp3')
             .on('error', function(err) {
                 console.log('Processing error! ' + err);
             })  ;
    });

    var server = app.listen(3000, function() {
       var host = server.address().address;
       var port = server.address().port;
       console.log('Example app listening at http://%s:%s', host, port);
    });

    i also tried this from the website example (this was just a guess)

    var command = ffmpeg('./tester.opus')
       .audioCodec('libmp3lame')
       .on('error', function(err) {
            console.log('Processing error! ' + err);
       })  ;
    var ffstream = command.pipe();
    ffstream.on('data', function(chunk) {
       console.log('ffmpeg just wrote ' + chunk.length + ' bytes');
    });

    both of these examples give me "ffmpeg exited with code 1". when i try using "saveToFile" and write a test mp3 file it works fine.

    is there a simpler or better way to do this ?

  • Piwik and Piwik PRO featured in VentureBeat Insight as “an obvious solution” for web analytics

    7 avril 2015, par Piwik Core Team — About

    We are proud to see Piwik and Piwik PRO featured in the recent report published by VentureBeat Insight. Published at the end of March 2015, Conversion Rate Optimisation : how to win at performance marketing was based on surveys of almost 3000 CRO tools users.

    Piwik earned a perfect score of 100 out of 100 for website analytics and was featured as an “obvious solution” for those who prefer to use open source products. The report also pointed out a very low abandonment rate of Piwik by its users, despite its growing popularity (3%).

    You can preview the “Conversion Rate Optimisation : how to win at performance marketing” report for free here
    (Note : there is a form to fill in before you can access it).

    View other awards won by Piwik here.

  • Piwik and Piwik PRO featured in VentureBeat Insight as “an obvious solution” for web analytics

    7 avril 2015, par Piwik Core Team — About

    We are proud to see Piwik and Piwik PRO featured in the recent report published by VentureBeat Insight. Published at the end of March 2015, Conversion Rate Optimisation : how to win at performance marketing was based on surveys of almost 3000 CRO tools users.

    Piwik earned a perfect score of 100 out of 100 for website analytics and was featured as an “obvious solution” for those who prefer to use open source products. The report also pointed out a very low abandonment rate of Piwik by its users, despite its growing popularity (3%).

    You can preview the “Conversion Rate Optimisation : how to win at performance marketing” report for free here
    (Note : there is a form to fill in before you can access it).

    View other awards won by Piwik here.