Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (78)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (12269)

  • lavfi/vf_v360 : implement output mask for barrelsplit

    19 mai 2022, par Anton Khirnov
    lavfi/vf_v360 : implement output mask for barrelsplit
    

    The top/bottom of the barrel are each coded as two semicircles inside a
    square block in the frame. Mask out the parts of the square that lie
    outside of these semicircles, so they are made transparent when
    alpha_mask=1.

    Fixes the other part of #9725.

    • [DH] libavfilter/vf_v360.c
  • C avormat_open_input dvb card not works

    16 octobre 2017, par Beka Tchitchinadze

    For multicast input this code works

    AVFormatContext *pFormatCtx = NULL;

    // Open video file
    if(avformat_open_input(&pFormatCtx, "udp://239.20.10.101:6000", NULL, NULL)!=0)
    {
       printf("error");
       return -1; // Couldn't open file
    }

    but i want to make this work for dvb card so this code works but shows nothing

    char *dev_name = "/dev/dvb/adapter0/dvr0";

    AVFormatContext *pFormatCtx = NULL;

    // Open video file
    if(avformat_open_input(&pFormatCtx, dev_name, NULL, NULL)!=0)
    {
       printf("error");
       return -1; // Couldn't open file
    }

    What I am doing wrong ?

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

    


      

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


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


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


    


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

    


    Thanks in advance.