Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (55)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (6762)

  • FFMPEG - CONVERT VIDEO TO GREYSCALE EXCEPT ONE COLOR ? LEAVE ONE COLOR, THE REST BLACK & WHITE ? [closed]

    19 décembre 2023, par scm360

    I have been researching and cannot find anything on how to preserve just one color / color range ; while converting a video to greyscale / black & white using FFMPEG. For example ; all black and white, except the peoples Blue Jeans, etc.

    


    Anyone know how to do this in FFMPEG ?

    


    Thanks in advance.

    


    I haven't actually found anything that has promise to achieve this. Of course I know how to convert everything to greyscale / black & white. But, not just leave the color / color range.

    


  • The convertion between iplimage and avframe

    7 août 2014, par AndyMeng

    Now I use sws_scale to convert an avframe to iplimage, then use opencv to do some operations to the image, then convert the iplimage to avframe, but the image seems becoming more purple than the origin image. This is my code

    int av2ipl(AVFrame *src, IplImage *dst, int height, int width)
    {
       struct SwsContext *swscontext = sws_getContext(width, height, PIX_FMT_YUV420P, dst->width, dst->height, PIX_FMT_BGR24, SWS_BILINEAR, 0, 0, 0);
       if (swscontext == 0)
           return 0;
       int linesize[4] = {dst->widthStep, 0, 0, 0 };
       sws_scale(swscontext, src->data, src->linesize, 0, height, (uint8_t **) & (dst->imageData), linesize);
       return 1;
    }

    int ipl2av(IplImage* src, AVFrame* dst, int height, int width)
    {
       struct SwsContext *swscontext = sws_getContext(width, height, PIX_FMT_BGR24,     width, height, PIX_FMT_YUV420P, SWS_BILINEAR, 0, 0, 0);
       if(swscontext == 0)
           return 0;
       int linesize[4] = {src->widthStep, 0, 0, 0};
       sws_scale(swscontext, (uint8_t **) & (src->imageData), linesize, 0, height, dst-       >data, dst->linesize);
       return 1;
    }

    Is there any wrong in the code ?

  • doxy : Fix link in badge color

    16 décembre 2013, par Luca Barbato
    doxy : Fix link in badge color
    

    Green on blue was not exactly optimal.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] doc/doxy/doxy_stylesheet.css