Recherche avancée

Médias (91)

Autres articles (47)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

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

Sur d’autres sites (7563)

  • Revision 34620 : On doit utiliser #CHEMIN pour les images + taille plus grande du select ...

    21 janvier 2010, par rastapopoulos@… — Log

    On doit utiliser #CHEMIN pour les images + taille plus grande du select multiple.

  • lavfi/pan : allow negative gain parameters also for other inputs than the first named

    28 octobre 2016, par Moritz Barsnick
    lavfi/pan : allow negative gain parameters also for other inputs than the first named
    

    Expands the parser to also accept the separator ’-’ in addition to
    ’+’, and take the negative sign into consideration.

    The optional sign for the first factor in the expression is already
    covered by parsing for an integer.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_pan.c
  • How to stop ffmpeg process after it has finished processing in C# ?

    7 janvier 2018, par alan samuel

    I am trying to stop the ffmpeg process once it has finished doing what I want it do, but I am not able to find a way.

    Here is what I have done.

    //Process for running ffmpeg
    Process process = new Process();
    process.StartInfo.RedirectStandardOutput = true;
    process.StartInfo.RedirectStandardError = true;
    process.StartInfo.FileName = ffmpegfile;
    process.StartInfo.Arguments = commandtorun;
    process.StartInfo.UseShellExecute = false;
    process.StartInfo.CreateNoWindow = true;


    process.Start();
    process.WaitForExit();

    process.Close();

    The problem is ffmpeg does not tell the process to stop after it has finished executing, so I cant use WaitForExit() call.

    What i tried doing is

    commandtorun = commandtorun+ " &amp;&amp; exit";

    to force ffmpeg to close after it finishes executing. Now this works when I try in cmd.

    But when I do the same thing in C#, ffmpeg closes down as soon as the command is executed.

    Is there any way to force ffmpeg or the process to close after the processing is done ?