Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (48)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (8984)

  • libavcodec/jpeg2000dec : Fix codeblock decode check

    23 juillet 2020, par Gautam Ramakrishnan
    libavcodec/jpeg2000dec : Fix codeblock decode check
    

    The codeblock decoder checks whether the mqc decoder
    has decoded the right number of bytes. However, this
    check does not account for the fact that the mqc encoder's
    flush routine adds 2 bytes of data which does not have to be
    read by the decoder. The check is modified to account for
    this. This patch solves issue #4827

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/jpeg2000dec.c
  • avcodec/evc_parse : Check tid

    4 octobre 2023, par Michael Niedermayer
    avcodec/evc_parse : Check tid
    

    The check is based on not infinite looping. It is likely
    a more strict check can be done

    Fixes : Infinite loop
    Fixes : 62473/clusterfuzz-testcase-minimized-ffmpeg_BSF_EVC_FRAME_MERGE_fuzzer-5719883750703104
    Fixes : 62765/clusterfuzz-testcase-minimized-ffmpeg_dem_EVC_fuzzer-6448531252314112
    Fixes : 63378/clusterfuzz-testcase-minimized-ffmpeg_dem_MPEGPS_fuzzer-6504993844494336

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : "Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics" <d.kozinski@samsung.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/evc_parse.c
  • ffmpeg's invalid input stream fps causes low latency [closed]

    9 mai 2024, par I have 10 fingers

    I have ffmpeg setup which produces rtmp stream from remote rtsp stream. The rtsp stream comes from ip camera which support multiple profiles. Each profile has 1080p 30 fps, 1080p 15 fps.

    &#xA;

    The weird thing is that when ffmpeg analyze its input stream, one profile is recognized as 1 fps as below

    &#xA;

    Input #0, rtsp, from &#x27;rtsp://...&#x27;:&#xA;  Metadata:&#xA;    title           : Media Presentation&#xA;    comment         : samsung&#xA;  Duration: N/A, start: 0.064144, bitrate: N/A&#xA;    Stream #0:0: Video: h264 (High), yuvj420p(pc, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], 1 fps, 1 tbr, 90k tbn, 2 tbc&#xA;    Stream #0:1: Data: none&#xA;Output #0, flv, to &#x27;rtmp:...&#x27;:&#xA;  Metadata:&#xA;    title           : Media Presentation&#xA;    comment         : samsung&#xA;    encoder         : Lavf58.29.100&#xA;    Stream #0:0: Video: h264 (High) ([7][0][0][0] / 0x0007), yuvj420p(pc, bt709, progressive), 1920x1080 [SAR 1:1 DAR 16:9], q=2-31, 1 fps, 1 tbr, 1k tbn, 90k tbc&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (copy)&#xA;

    &#xA;

    And when it is played the tbr is 30 i think it means the real fps from video stream is 30. No problem actually this gives me the lowest latency(2-3s).

    &#xA;

    The other stream is normal 30 fps input 30 fps output and it gives me some delay(5-6s) so i want to know what cause this fps bug ? If i can use this bug i want to change all my streams to reduce the latency.

    &#xA;