Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (91)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

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

  • avutil/opt : Don't cast when the result might be misaligned

    25 mars 2024, par Andreas Rheinhardt
    avutil/opt : Don't cast when the result might be misaligned
    

    A pointer conversion is UB if the resulting pointer is not
    correctly aligned for the resultant type, even if no
    load/store is ever performed through that pointer (C11 6.3.2.3 (7)).

    This may happen in opt_copy_elem(), because the pointers are
    converted even when they belong to a type that does not guarantee
    sufficient alignment.

    Fix this by deferring the cast after having checked the type.
    Also make the casts -Wcast-qual safe and avoid an indirection
    for src.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavutil/opt.c
  • avcodec/aac/aacdec_usac : remove unnecessary cast

    2 juin 2024, par James Almer
    avcodec/aac/aacdec_usac : remove unnecessary cast
    

    Fixes "libavcodec/aac/aacdec_usac.c(543) : error C2440 : 'type cast' : cannot convert from 'GetBitContext' to 'GetBitContext'"
    from msvc.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/aac/aacdec_usac.c
  • avutil/wchar_filename : re-introduce explicit cast of void* to char*

    22 octobre 2024, par Marton Balint
    avutil/wchar_filename : re-introduce explicit cast of void* to char*
    

    Fixes compile error on windows with decklink :

    In file included from ./libavformat/os_support.h:175,
    from ./libavformat/internal.h:30,
    from libavdevice/decklink_common.cpp:25 :
    ./libavutil/wchar_filename.h : In function 'int wchartocp(unsigned int, const wchar_t*, char**)' :
    ./libavutil/wchar_filename.h:59:32 : error : invalid conversion from 'void*' to 'char*' [-fpermissive]
    59 | *filename = av_malloc_array(num_chars, sizeof **filename) ;
    | ^ 
    | |
    | void*

    Regression since e9e8bea2e79bc3c481a6f81f75f6c871e3e0f367.

    Fixes ticket #11103.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/wchar_filename.h