Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (41)

  • 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

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (4798)

  • About ffmepg. Some puzzles about using user defined filter

    12 novembre 2014, par Tian Gao

    All.

    I am just a starter in ffmpeg.

    I just downloaded it, and want to define the filter by myself. But, I met some problem, The filter I am to write is sure to be very complex, so I need use some class, which is define in cplusplus, to help me finish the task. So, I just created two files, .h file and .cpp file. And I want to define one specific class in these two files. And the class defined before, will be used in the filter file defined by my self. I know that the filter defined by users should be wrote as the strict formats. But, it always give out this wrong information,

    error: unknown type name 'class'

    And if i add some related lines, to command it compile the program by cplusplus, like this,

    #ifndef GY_FILTER_BLEND_H_
    #define GY_FILTER_BLEND_H_

    #include
    #ifdef __cplusplus

    class testgy
    {
    public:
       int xx;
       testgy();
       ~testgy();
       void initial();

    };
    #endif

    #endif /* GY_FILTER_BLEND_H_ */

    This error info is to be shown,

    libavfilter/vf_gpu_scroll_left_right.c:64:5: error: unknown type name 'testgy'

    in vf_gpu_scroll_left_right.c , the related lines are as follows,

    #include "gy_filter_blend.h"

    AVFILTER_DEFINE_CLASS(tp_scroll_left_right);
    static av_cold int init(AVFilterContext *ctx)
    {

       TpScrollLeftDownContext *ctx_ptr = ctx->priv;

       testgy testGY;
       testGY.initial();

       __android_log_print(4 ,"gyy_1112" ,"testGY   = %d", testGY.xx);
       __android_log_print(4 ,"gyy_1112" ,"str   = %s", ctx_ptr->synthesisCmd0);

       tt  = gpu_filter_new(FILTER_TYPE_SCROLL_LEFT);

       gl_program_object_id_scroll_horizontal = -1;
       video_width = -1;
       video_height =-1;

       return 0;
    }

    So, The question is that I don’t know how to use the class defined by cplusplus, in c file. Anyone has some related experience before ?

    Thanks a lot !

  • libavutil/timer : Fix clang reserved-user-defined-literal

    13 mars 2021, par Christopher Degawa
    libavutil/timer : Fix clang reserved-user-defined-literal
    

    clang errors when compiling with C++11 about needing spaces between
    literal and identifier

    Signed-off-by : Christopher Degawa <ccom@randomderp.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavutil/timer.h
  • ffmpeg how to create a effect video like : flower fall ?

    20 mars 2014, par user2927954

    I try to create an effect video like : flower fall. I have a main video (main.mp4) and a effect video (flower_fall.mp4). I want to make a output.mp4 video that merge 2 this videos and the result look like main video is a bottom layer and effect video is a top layer(opacity about 0.5 or something like that). What is the ffmpeg command for solve my target ?