Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (104)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (12591)

  • arm : vp9mc : Fix vertical alignment of operands

    9 janvier 2017, par Martin Storsjö
    arm : vp9mc : Fix vertical alignment of operands
    

    This is cherrypicked from libav commit
    c536e5e8698110c139b1c17938998a5547550aa3.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/arm/vp9mc_neon.S
  • avcodec/iff : add support for vertical word compression in ILBM

    6 janvier 2017, par Paul B Mahol
    avcodec/iff : add support for vertical word compression in ILBM
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/iff.c
  • System.Diagnostics.Process pipe (vertical bar) not accepted as argument

    15 avril 2014, par emp

    I'm trying to execute following code (source : http://geekswithblogs.net/PearlFactory/archive/2011/11/23/convert-mp3-to-aacflac-to-aac-or-any-other-combination.aspx) using System.Diagnostics.Process. It works fine in command line. But in C# it's failing on the | character.

    var myProcess = new Process();
           var p = new ProcessStartInfo();
           var sArgs = " -i emp.mp3 -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4";
           p.FileName = "ffmpeg.exe";
           p.CreateNoWindow = false;
           p.RedirectStandardOutput = false;
           p.UseShellExecute = false;
           p.Arguments = sArgs;
           myProcess.StartInfo = p;
           myProcess.Start();
           myProcess.WaitForExit();

    It gives the following error :

    Unable to find a suitable output format for '|' : Invalid argument

    I've looked around on stackoverflow and found the following hint but it is also not working :

    var psi = new ProcessStartInfo("ffmpeg.exe");
           psi.Arguments = "\"-i emp.mp3 -f wav -\" | \"neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4\"";
           psi.CreateNoWindow = false;
           psi.UseShellExecute = false;
           var process = new Process { StartInfo = psi };
           process.Start();
           process.WaitForExit();

    gives the following error :

    Unrecognized option 'i emp.mp3 -f wav -'
    Failed to set value '|' for option 'i emp.mp3 -f wav -'