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 (10263)

  • lavf : deprecate av_stream_get_end_pts()

    17 août 2022, par Anton Khirnov
    lavf : deprecate av_stream_get_end_pts()
    

    According to its documentation it returns "pts of the last muxed packet
    + its duration", but the value it actually returns right now is
    (possibly guessed) dts after muxer-internal bitstream filtering (if
    any).

    This function was added for ffmpeg.c, but it is not used there anymore.
    Since the value it returns is ill-defined and so inappropriate for any
    serious use, deprecate it.

    • [DH] doc/APIchanges
    • [DH] libavformat/avformat.h
    • [DH] libavformat/mux_utils.c
    • [DH] libavformat/version_major.h
  • {avcodec,tests} : rename the bundled Mesa AV1 vulkan video headers

    14 février 2024, par Jan Ekström
    avcodec,tests : rename the bundled Mesa AV1 vulkan video headers
    

    This together with adjusting the inclusion define allows for the
    build to not fail with latest Vulkan-Headers that contain the
    stabilized Vulkan AV1 decoding definitions.

    Compilation fails currently as the AV1 header is getting included
    via hwcontext_vulkan.h -> <vulkan/vulkan.h> -> vulkan_core.h, which
    finally includes vk_video/vulkan_video_codec_av1std.h and the decode
    header, leading to the bundled header to never defining anything
    due to the inclusion define being the same.

    This fix is imperfect, as it leads to additional re-definition
    warnings for things such as
    VK_STD_VULKAN_VIDEO_CODEC_AV1_DECODE_SPEC_VERSION. , but it is
    not clear how to otherwise have the bundled version trump the
    actually standardized one for a short-term compilation fix.

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/vulkan_video.h
    • [DH] libavcodec/vulkan_video_codec_av1std.h
    • [DH] libavcodec/vulkan_video_codec_av1std_decode.h
    • [DH] libavcodec/vulkan_video_codec_av1std_decode_mesa.h
    • [DH] libavcodec/vulkan_video_codec_av1std_mesa.h
    • [DH] tests/ref/fate/source
  • lavc/libopenh264enc : Allow specifying the profile through AVCodecContext

    6 mai 2020, par Linjie Fu
    lavc/libopenh264enc : Allow specifying the profile through AVCodecContext
    

    And determine the profile with following priority :
    1. s->profile ; then
    2. avctx->profile ; then
    3. s->cabac ; then
    4. a default profile.

    This seems more natural in case user somehow sets both avctx->profile and
    s->profile.

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Linjie Fu <linjie.fu@intel.com>

    • [DH] libavcodec/libopenh264enc.c