Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (102)

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

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

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

  • avcodec/tiff : Option to decode embedded thumbnail

    30 mai 2019, par Nick Renieris
    avcodec/tiff : Option to decode embedded thumbnail
    

    Adds the "-thumbnail" option, that works like the current "-subifd"
    option, but only for non-full-sized images.

    This is particularly useful for DNG images (see next commit) that
    have SubIFDs that are not necessarily thumbnails.

    Signed-off-by : Nick Renieris <velocityra@gmail.com>

    • [DH] libavcodec/tiff.c
  • Invalid option error using avcodec_open2 and libopus

    12 mai 2017, par Paul Gregoire

    I’m getting an invalid option result from avcodec_open2 in ffmpeg 3.1.6 with libopus 1.1.4. I’ve sorted through all the options and I cannot locate the offending option, I created a gist holding the relevant native code. I’ve searched all about the internet and cannot find anything helpful as of yet. I’ve also tried with and without the opts dictionary.

    results = avcodec_open2(context, codec, &amp;opts); and results = avcodec_open2(context, codec, 0);

    All tests and variations return -22 (at line 51 in gist)

  • ffmpeg_opt : rename loop option to stream_loop

    14 octobre 2015, par Michael Niedermayer
    ffmpeg_opt :  rename loop option to stream_loop
    

    The "loop" option is used in several demuxers (like img2dec) and muxers, using the same name in ffmpeg_opt
    breaks them. Feel free to revert this and replace by any other solution or rename both as preferred
    This is just as a quick fix to avoid the regression with existing command lines and to have both named
    the same (which does not work)

    Example :
    ./ffmpeg -loop 1 -i fate-suite/png1/lena-rgb24.png -t 1 test.avi
    will produce 25 frames with the img2dec loop but only 1 frame at 25fps with the ffmpeg loop option

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

    • [DH] ffmpeg_opt.c