Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (43)

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

  • avcodec/ffv1 : Implement CRC with non zero initial and final value

    25 septembre 2024, par Michael Niedermayer
    avcodec/ffv1 : Implement CRC with non zero initial and final value
    

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

    • [DH] libavcodec/ffv1.h
    • [DH] libavcodec/ffv1dec.c
    • [DH] libavcodec/ffv1enc.c
  • avfilter/af_asubboost : make wet option apply to final output

    28 novembre 2020, par Paul B Mahol
    avfilter/af_asubboost : make wet option apply to final output
    

    Also changes some default values for options after this change.
    This makes distinction between feedback and wet option.
    Before they would produce same output if values were swapped.

    • [DH] doc/filters.texi
    • [DH] libavfilter/af_asubboost.c
  • FFmpeg command to apply multiple filters and limit the final file size

    16 mars 2016, par Konrad —

    I’m using command below to convert video to a format of the defined scale and in order to hardcode the subtitles

    Original syntax

    ffmpeg -i "Original File.mov"  -vf subtitles=Subtitles.srt -vf scale=1920:1080 \
          -crf 12 "Final File".mov

    Problem

    I would like to expand this command further and :

    • ensure that the produce file is under 2GB
    • I would like to include additional parameters with advanced subtitle options, like setting the canvas size and fixing the potential delay

    Side notes

    I reckon that in case of predefining the file size the -crf 12 paramater will be redundant ?