Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (60)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (6331)

  • Revision eed1badedd : Optimize quantization simd implementation This commit allows the quantizer to c

    1er avril 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/x86/vp9_dct_ssse3.c


     Modify /vp9/encoder/x86/vp9_quantize_sse2.c



    Optimize quantization simd implementation

    This commit allows the quantizer to compare the AC coefficients to
    the quantization step size to determine if further multiplication
    operations are needed. It makes the quantization process 20% faster
    without coding statistics change.

    Change-Id : I735aaf6a9c0874c82175bb565b20e131464db64a

  • How to render YUV420P frames using DirectX ?

    25 décembre 2017, par TTGroup

    I’m using FFMPEG C++ to decode a video file.

    I decoded the frames under YUV420P format in System Memory.

    Next step, I want to render these frames by using DirectX.

    I searched many times, and I know that I have to use the texture2D, but there is not any code sample for my case.

    How to create a texture2D from YUV420 (or RGB instead) from System Memory and render it to the screen.

    And the performance is also important, so I need the best way to do it.
    Someone can show me the sample code ?

    Many Thanks !

  • ffmpeg/opencv How to perform Edge Detection after classify Type of frames

    25 janvier 2018, par 8793

    I want to generate edge map of I-frame only in a video streaming applications (server). Below is code to generate type of frame in ffmpeg.

    AVFrame *frame;
    pictType = av_get_picture_type_char(frame->pict_type);

    After this step, I don’t know how to process frame (using opencv c++) to have its edge map.

    As I am a beginner in ffmpeg, I hope you can give me a simple example to understand this issue.