Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • avfilter/af_astats : clear all stats

    25 février 2016, par Paul B Mahol
    avfilter/af_astats : clear all stats
    

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

    • [DH] libavfilter/af_astats.c
  • arm : Clear the gp register alias at the end of functions

    14 novembre 2016, par Martin Storsjö
    arm : Clear the gp register alias at the end of functions
    

    We reset .Lpic_gp to zero at the start of each function, which means
    that the logic within movrelx for clearing gp when necessary will
    be missed.

    This fixes using movrelx in different functions with a different
    helper register.

    This is cherry-picked from libav commit
    824e8c284054f323f854892d1b4739239ed1fdc7.

    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavutil/arm/asm.S
  • Process won't stop

    14 mai 2018, par Srdjan M.

    The process goes in infinite loop or it’s waiting something and I don’t know what. It won’t pass WaitForExit methode.

    FFmpeg :

    -ss 0 -i output.mp4 -t 10 -an -y test.mp4

    C# Code :

    using (Process process = new Process())
    {
        process.StartInfo.UseShellExecute = false;
        process.StartInfo.RedirectStandardOutput = true;
        process.StartInfo.RedirectStandardError = true;
        process.StartInfo.FileName = FileName; // ffmpeg.exe
        process.StartInfo.Arguments = Arguments; //-ss 0 -i output.mp4 -t 10 -an -y test.mp4
        process.Start();
        process.WaitForExit(); // stops here and waits

        return process.StandardOutput.ReadToEnd();
    }

    Edit :

    Adding -loglevel quiet to my ffmpeg query made my problem disappear. Why ?