Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (10104)

  • Revision 0a3eec86e5 : use calloc() instead of malloc() So that, in case of error, the arrays are not

    6 novembre 2012, par Pascal Massimino

    Changed Paths : Modify /vp8/decoder/threading.c use calloc() instead of malloc() So that, in case of error, the arrays are not filled with trash pointers that are attempted a free() during vp8mt_de_alloc_temp_buffers() Change-Id : (...)

  • Anomalie #3594 : Couleurs de la case "Rechercher" non accessibles

    29 février 2016, par - Equipement

    Bonjour,
    J’ai obtenu ces résultats avec différentes extensions de Firefox, consacrées à l’accessibilité.
    Il semble que la case "Rechercher" (dans l’espace privé) ne soit pas restituée de la même manière sous Firefox (ESR v 38.2) que sous Chrome (v 48.0), comme le montre la copie d’écran ci-jointe.
    Cordialement
    Equipement

  • Cancelling ffpeg launched as a C# process

    22 avril 2016, par DarwinIcesurfer

    I’m launching ffmpeg in a c# process to encode a video. In a command window, ffmpeg can be interrupted by pressing CTRL-C. I have tried to achieve the same effect by closing the process, however ffmpeg does not appear to close (it is still visible in task manager and it does not release the handle on the file it was encoding)

    How can ffmpeg be interrupted programatically ?

    static Process proc;
    static BackgroundWorker bw;    

    public void EncodeVideoWithProgress(string filename, string arguments, BackgroundWorker worker, DoWorkEventArgs e)
    {
       proc = new Process();

       // assign the backgroud worker to a class member variable so all function within the class will have access
       bw = worker;

       proc.StartInfo.FileName = "ffmpeg";
       proc.StartInfo.Arguments = "-i " + " \"" + filename + "\" " + arguments;

       proc.StartInfo.UseShellExecute = false;
       proc.EnableRaisingEvents = true;
       proc.StartInfo.RedirectStandardError = true;
       proc.StartInfo.RedirectStandardOutput = false;
       proc.StartInfo.CreateNoWindow = true;

       proc.ErrorDataReceived += new DataReceivedEventHandler(NetErrorDataHandler);

       proc.Start();
       proc.BeginErrorReadLine();

       proc.WaitForExit();
    }

    private static void NetErrorDataHandler(object sendingProcess,
              DataReceivedEventArgs errLine)
    {
       if (bw.CancellationPending)
       {
           proc.CloseMainWindow();
           proc.Close();  
       }
       else
       {
        // do other tasks
       }
    }