Recherche avancée

Médias (91)

Autres articles (3)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (793)

  • Using FFMPEG to overlay 2 concat-demux videos

    10 juin 2021, par marco

    I am making a screen recording software that captures gestures/mouse moves as coordinates+timestamps, and would like to overlay those on the screen recording. I have a folder of "Frames" that have a red circle and the rest transparent that correspond to the gestures.

    &#xA;

    The way I initially got it working was to use concat-demux to generate a video of the gestures, and then I overlay it with ffmpeg by chromakeying out the black background and overlaying it, but that is very slow.

    &#xA;

    Is there a better/faster way to do it that maybe doesn't make an intermediate video that I have to chromakey ? I have access to the timestamps of the gestures as well as the duration these frames should stay on screen.

    &#xA;

    my pipeline :

    &#xA;

    Screen Frames w/ Timestamps&#x2B;durations --> Concat-demux --> ---------------------------&#x2B;&#xA;                                                                                      |&#xA;Gesture Logs --> Frames w/ timestamp&#x2B;duration --> Concat-demux ---> chromakey --&#x2B;     |&#xA;                    (has transparency)        (loses transparency)              |     |&#xA;                                                                                V     V&#xA;                                                                               Overlay&#xA;                                                                                  |&#xA;                                                                                  V&#xA;                                                                             Final Video&#xA;

    &#xA;

    Example frame from gestures which is the foreground&#xA;(The white is transparent)

    &#xA;

    The background has no transparency as it is a computer background

    &#xA;

    The command I used to combine the videos I generated is :&#xA;ffmpeg -i gestures.mp4 -i screen.mp4 -filter_complex &#x27;[0]chromakey=0x000000:.1[bk];[1][bk]overlay&#x27; output.mp4

    &#xA;

  • avcodec/motion_est : Fix mv_penalty table size

    5 janvier 2016, par Michael Niedermayer
    avcodec/motion_est : Fix mv_penalty table size
    

    Fixes out of array read

    Found-by : Tyson Smith <twsmith@mozilla.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ituh263enc.c
    • [DH] libavcodec/motion_est.c
    • [DH] libavcodec/motion_est.h
    • [DH] libavcodec/mpeg12enc.c
    • [DH] libavcodec/mpegvideo_enc.c
    • [DH] libavcodec/snowenc.c
  • avutil/cpu_internal : Provide ff_getauxval() wrapper for getauxvaul()

    9 septembre 2024, par Brad Smith
    avutil/cpu_internal : Provide ff_getauxval() wrapper for getauxvaul()
    

    Initially used for getauxval() but will be used to add support for
    other API, such as elf_aux_info().

    Signed-off-by : Brad Smith <brad@comstyle.com>

    • [DH] libavutil/aarch64/cpu.c
    • [DH] libavutil/arm/cpu.c
    • [DH] libavutil/cpu.c
    • [DH] libavutil/cpu_internal.h
    • [DH] libavutil/loongarch/cpu.c
    • [DH] libavutil/mips/cpu.c
    • [DH] libavutil/riscv/cpu.c