Recherche avancée

Médias (91)

Autres articles (57)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6126)

  • avfilter/vf_format : re-use AVFilterFormats for pix_fmt parsing

    21 octobre 2023, par Niklas Haas
    avfilter/vf_format : re-use AVFilterFormats for pix_fmt parsing
    

    Rewrite the format parsing code to make it more easily generalizable. In
    particular, `invert_formats` does not depend on the type of format list
    passed to it, which allows me to re-use this helper in an upcoming
    commit.

    Slightly shortens the code, at the sole cost of doing several malloc
    (ff_add_format) instead of a single malloc.

    • [DH] libavfilter/vf_format.c
  • Real-time seeking and playback ffmpeg use case

    6 octobre 2023, par BlackIce2107

    What is best approach to store the 24x7 RTSP recorded streams and format that can satisfy near real-time seeking and playback preferably without concatenating or trimming them first and then serving the resulting file ?

    


    We have attempted using h264 videos that are segmented into 15 minute chunks with a high key frame interval where the user may request for a start and end time that can span either multiple videos or a single video file.

    


    With FFMPEG this is relatively straightforward but we would need to either concatenate or trim files based on the input which takes a tiny bit of time even with copy codec accurately and even on higher-end EC2s thereby leading to a unsatisfactory user experience.

    


    Additonally attempted to use hevc/h265 to also tackle cost efficiency as this is also a factor in the long run but hevc videos are not widely supported on most browsers.

    


  • tests/swscale : switch from MSE to SSIM

    25 février, par Niklas Haas
    tests/swscale : switch from MSE to SSIM
    

    And bias it towards Y. This is much better at ignoring errors due to differing
    dither patterns, and rewards algorithms that lower luma noise at the cost of
    higher chroma noise.

    The (0.8, 0.1, 0.1) weights for YCbCr are taken from the paper :
    "Understanding SSIM" by Jim Nilsson and Tomas Akenine-Möller
    (https://arxiv.org/abs/2006.13846)

    • [DH] libswscale/tests/swscale.c