Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (88)

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

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

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

  • Applying multiple filters at once with FFMPEG

    8 novembre 2024, par Parziphal

    I have the need to apply fadein and overlay filters to a video. Is it possible to apply 2 filters at once ?

    


    I got :

    



    ffmpeg -i input.mpg -vf "movie=watermark.png [logo]; [in][logo] overlay=W-w-10:H-h-10 [out]" output.mpg


    


    I'm trying to add fade=in:0:20, but if I add a new -vf parameter, it will overwrite the preceding one, and if I add :

    


    -vf "fade=in:0:20; movie=......"


    


    it won't work.

    


    Is this possible or do I have to run FFmpeg twice ?

    


  • lavf/mov.c : Set st->start_time for video streams explicitly.

    30 mai 2018, par Sasi Inguva
    lavf/mov.c : Set st->start_time for video streams explicitly.
    

    If start_time is not set, ffmpeg takes the duration from the global
    movie instead of the per stream duration.
    Signed-off-by : Sasi Inguva <isasi@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
    • [DH] tests/fate/mov.mak
    • [DH] tests/ref/fate/mov-neg-firstpts-discard
    • [DH] tests/ref/fate/mov-stream-shorter-than-movie
  • configure : Fix check_exec_crash for ICL support

    25 mai 2013, par Laurent
    configure : Fix check_exec_crash for ICL support
    

    Change the check_exec_crash test to use a function pointer instead of
    simply calling the function. The EBP availability test will crash when
    compiled with ICL likely due to compiler optimization shenanigans.

    Originally the check_exec_crash code was moved out of main to fix a
    problem with gcc’s treatment of non-leaf main on x86_32. Libav already
    moved the code out of main but the addition of the function pointer will
    prevent any inlining which fixes the remaining problem.

    A function pointer is used since it is compiler agnostic (as opposed to
    say __attribute__ ((noinline)) which would only work with gcc compatible
    compilers).

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure