Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10500)

  • avfilter : Temporary hack to fix format negotiation for hw formats

    3 janvier 2024, par Mark Thompson
    avfilter : Temporary hack to fix format negotiation for hw formats
    

    hw_frames_ctx on the input link is only set when the input link is
    configured, which hasn't happened yet. This temporarily hacks around
    the problem (in a way no worse than before the format negotiation
    changes) until a proper fix can be applied.

    • [DH] libavfilter/avfiltergraph.c
  • fftools/ffmpeg_filter : fix NULL pointer dereference

    20 décembre 2023, par Zhao Zhili
    fftools/ffmpeg_filter : fix NULL pointer dereference
    

    In close_output(), a dummy frame is created with format NONE passed
    to enc_open(), which isn't prepared for it. The NULL pointer
    dereference happened at
    av_pix_fmt_desc_get(enc_ctx->pix_fmt)->comp[0].depth.

    When fgt.graph is NULL, skip fg_output_frame() since there is
    nothing to output.

    frame #0 : 0x0000005555bc34a4 ffmpeg_g`enc_open(opaque=0xb400007efe2db690, frame=0xb400007efe2d9f70) at ffmpeg_enc.c:235:44
    frame #1 : 0x0000005555bef250 ffmpeg_g`enc_open(sch=0xb400007dde2d4090, enc=0xb400007e4e2daad0, frame=0xb400007efe2d9f70) at ffmpeg_sched.c:1462:11
    frame #2 : 0x0000005555bee094 ffmpeg_g`send_to_enc(sch=0xb400007dde2d4090, enc=0xb400007e4e2daad0, frame=0xb400007efe2d9f70) at ffmpeg_sched.c:1571:19
    frame #3 : 0x0000005555bee01c ffmpeg_g`sch_filter_send(sch=0xb400007dde2d4090, fg_idx=0, out_idx=0, frame=0xb400007efe2d9f70) at ffmpeg_sched.c:2154:12
    frame #4 : 0x0000005555bcf124 ffmpeg_g`close_output(ofp=0xb400007e4e2d85b0, fgt=0x0000007d1790eb08) at ffmpeg_filter.c:2225:15
    frame #5 : 0x0000005555bcb000 ffmpeg_g`fg_output_frame(ofp=0xb400007e4e2d85b0, fgt=0x0000007d1790eb08, frame=0x0000000000000000) at ffmpeg_filter.c:2317:16
    frame #6 : 0x0000005555bc7e48 ffmpeg_g`filter_thread(arg=0xb400007eae2ce7a0) at ffmpeg_filter.c:2836:15
    frame #7 : 0x0000005555bee568 ffmpeg_g`task_wrapper(arg=0xb400007d8e2db478) at ffmpeg_sched.c:2200:21

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] fftools/ffmpeg_filter.c
  • vulkan : return VK_NOT_READY when no queries are available

    25 octobre 2023, par Lynne
    vulkan : return VK_NOT_READY when no queries are available
    

    Fixes a validation issue.
    The issue is that the function gets called before we've sumitted a frame
    for decoding to that context. However, we cannot run queries before
    they've been reset, which happens at submission time.
    As we'd need to otherwise run a command queue at init-time, just check
    if submissions have happened.

    • [DH] libavutil/vulkan.c
    • [DH] libavutil/vulkan.h