Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (106)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9865)

  • Anomalie #3403 (Nouveau) : Notice dans le forum de l’espace privé

    8 mars 2015, par Franck Dalot

    php 5.6.4
    prefix des tables : spipdev2
    SPIP 3.1.0-alpha [21929]

    Dans ecrire/ ?exec=forum&repondre=new si le message ou le titre contient moins de 10 caractères apparait :
    Notice : Undefined variable : ajouter_mot in C :\EasyPHP-DevServer-14.1VC11\data\localweb\projects\spipdev2\plugins-dist\forum\formulaires\forum_prive.php on line 82

  • It’s January 28th : Let’s celebrate Data Privacy !

    29 janvier 2018, par Matomo Core Team

    It is a special Sunday here for us at Matomo, as today is international Data Privacy Day. The day was created in 2007 to raise awareness of the importance of data privacy for people and businesses worldwide.

    What is data privacy about ?

    Personal data refers to any data which is collected and can be linked to an individual human being such as phone records, credit card transactions, GPS position, IP addresses, browsing history… So basically, personal data refers to your identity online. That is why you should be highly concerned about sending your personal data (or your customers’ personal data) away. It is important to be aware of who is collecting the information and how it is being used.

    What big changes are happening in 2018 ?

    New privacy regulations GDPR comes into play next May 2018 : GDPR will bring about some changes (in the right direction) by making people and businesses aware of what data privacy means, and what they should be doing to protect their customers’ privacy. With these new regulations, data privacy awareness is reaching a critical milestone this year.

    How can I protect my privacy ?

    Here are a few tips to protect your privacy :

    • Educate yourself on the importance of privacy : the more informed you are the better.
    • Use open source solutions where you can keep full control of your own data (such as NextCloud instead of Dropbox and of course Matomo instead of Google Analytics),
    • Experiment with different online services to protect your data privacy, for example using an alternative search engine (such as DuckDuckGo instead of Google) or an alternative email provider (such as ProtonMail).

    What’s coming next for Matomo and Privacy ?

    Here at Matomo, we are building the leading decentralised open web analytics platform. We’re currently working on new sets of privacy features to make compliance with GDPR a breeze. Stay tuned here to be notified when we launch the new privacy compliance tools !

    And in case you’ve missed this important info, you may be interested in :

     

    The post It’s January 28th : Let’s celebrate Data Privacy ! appeared first on Analytics Platform - Matomo.

  • Differentiate between error and standard terminal log with ffmpeg - nodejs

    9 avril 2017, par Guig

    I’m using ffmpeg in node js. Both the standard terminal output and the error seems to be sent to stdout, so I don’t know how to differentiate between error and success... Here’s my code :

    var convertToMp3 = function(filePath) {
     var ffmpeg = child_process.spawn('ffmpeg',['-i', filePath, '-y', 'output.mp3']);
     var err = '';
     ffmpeg.stderr
       .on('data', function(c) { err += c; })
       .on('end', function() { console.log('stderr:', err); });
     var d = '';
     ffmpeg.stdout
       .on('data', function(c){d +=c;})
       .on('end', function(){ console.log('stdout', d); });
    }

    wether the conversion succeeds or fails, stdout is empty and stderr contains what I’d get if I’d run the corresponding command in the terminal