Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (18)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (5920)

  • lavc/huffyuvdsp : basic R-V V add_hfyu_left_pred_bgr32

    12 novembre 2023, par Rémi Denis-Courmont
    lavc/huffyuvdsp : basic R-V V add_hfyu_left_pred_bgr32
    

    Better performance can probably be achieved with a more intricate
    unrolled loop, but this is a start :

    add_hfyu_left_pred_bgr32_c : 15084.0
    add_hfyu_left_pred_bgr32_rvv_i32 : 10280.2

    This would actually be cleaner with the RISC-V P extension, but that is
    not ratified yet (I think ?) and usually not supported if V is supported.

    • [DH] libavcodec/riscv/huffyuvdsp_init.c
    • [DH] libavcodec/riscv/huffyuvdsp_rvv.S
  • libavutil/log.c : only include valgrind header when used.

    29 octobre 2023, par Reimar Döffinger
    libavutil/log.c : only include valgrind header when used.
    

    This is cleaner, but it is also a workaround for when
    the header exists, but cannot be compiled.
    This will happen when the compiler has no inline asm
    support.
    Possibly the configure check should be improved as well.

    • [DH] libavutil/log.c
  • fftools/ffprobe : Use proper enum type

    6 août 2023, par Andreas Rheinhardt
    fftools/ffprobe : Use proper enum type
    

    This is a bit cleaner as int need not be the underlying type
    of an enum if a smaller type can hold all its values.
    Also declare the children_ids array as const as it never changes.

    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffprobe.c