Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (108)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (9647)

  • prebuilt ffmpeg library for android

    15 décembre 2014, par andruido

    Nice being here.
    I researched a lot on the topic but now i am stuck.

    Currently i try to receive a udp stream within android, i am using the libraries from http://code.google.com/p/javacv/downloads/list, most of the things work fine. However if i try to use "avformat_network_init() ;" (thanks to this Receiving RTSP stream using FFMPEG library) i get the following error :

    undefined reference to `avformat_network_init’

    my guess is that the prebuilt library called "libavformat.so" does not contain the specific function, am i right ? if so, does anyone know where i can find the appropriate library ? I am developing on windows and failed already building it myself with cygwin and currently have not the option to install ubuntu or such.

    thanks in advance.

  • avcodec/vp8 : Do not use num_coeff_partitions in thread/buffer setup

    30 septembre 2015, par Michael Niedermayer
    avcodec/vp8 : Do not use num_coeff_partitions in thread/buffer setup
    

    The variable is not a constant and can lead to race conditions

    Fixes : repro.webm (not reproducable with FFmpeg alone)

    Found-by : Dale Curtis <dalecurtis@google.com>
    Tested-by : Dale Curtis <dalecurtis@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vp8.c
  • Detection of virtual background on video using ffmpeg

    28 juillet 2021, par Marcos G

    I am trying with ffmpeg to detect the use of a virtual background on a video, like the ones used in Google Meet. I got some ideas, but none seem to work :

    &#xA;

      &#xA;
    • Egde color : When using a chroma key you can get shades of green/blue on the outline of the subject. This is called spill, and can be detectable, but gets discarded by the fact that you dont need a chroma key to fake a background (example : Google Meet).
    • &#xA;

    • Still image : Most of virtual backgrounds are a still image pasted behind the subject. The problem with detecting this is that most of the real backgrounds also are like still images, without much movement.
    • &#xA;

    • Blur : When faking a background without a chroma key the outline of the subject becomes very blurry (this is more noticeable when the subject moves), but I can't find a way to detect it using ffmpeg.
    • &#xA;

    &#xA;

    How can I do this ? I'm open to trying other tecniques such as AI.

    &#xA;

    Thanks in advance.

    &#xA;