Recherche avancée

Médias (91)

Autres articles (105)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (10704)

  • vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP

    26 octobre 2014, par Rémi Denis-Courmont
    vdpau/h264 : request MAIN rather than BASELINE VDPAU profile for CBP
    

    The H.264 Constrained Baseline Profile (CBP) is a subset of both the
    Main Profile and the Baseline Profile. In principles, a hardware
    decoder that supports either of those can decode CBP content. As it
    happens, Main is supported by all VDPAU drivers, and Baseline is not.

    So favor map CBP to MP for now. Hopefully in the future libvdpau will
    offer an explicit choice for CBP.

    This fixes bug 757.

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/vdpau_h264.c
  • fftools/ffmpeg_mux_init : Fix attachment_filename use-after-free

    18 février 2024, par Andreas Rheinhardt
    fftools/ffmpeg_mux_init : Fix attachment_filename use-after-free
    

    The filename is freed with the OptionsContext and therefore
    there will be a use-after-free when reporting the filename
    in print_stream_maps(). So create a copy of the string.

    This is a regression since 8aed3911fc454e79697e183660bf30d31334a64b.
    fate-lavf-mkv_attachment exhibits it (and reports a random nonsense
    filename here), but this does not make the test fail (not even with
    valgrind ; only with ASAN, as it aborts on use-after-free).

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_mux.c
    • [DH] fftools/ffmpeg_mux_init.c
  • lavf/hlsenc : free the old_filname to avoid memory leak

    19 août 2019, par Jun Zhao
    lavf/hlsenc : free the old_filname to avoid memory leak
    

    free the old_filname to avoid memory leak in error handle
    path.

    Reviewed-by : Steven Liu <lq@onvideo.cn>
    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavformat/hlsenc.c