Recherche avancée

Médias (91)

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (8849)

  • Nested c language function

    3 juillet 2017, par Saqrag
    #if AV_GCC_VERSION_AT_LEAST(4,3)
    #define av_alloc_size(...) __attribute__((alloc_size(__VA_ARGS__)))
    #else
    #define av_alloc_size(...)
    #endif

    /**
    * Allocate a memory block for an array with av_mallocz().
    *
    * The allocated memory will have size `size * nmemb` bytes.
    *
    * @param nmemb Number of elements
    * @param size  Size of the single element
    * @return Pointer to the allocated block, or `NULL` if the block cannot
    *         be allocated
    *
    * @see av_mallocz()
    * @see av_malloc_array()
    */

    av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb,
    size_t size)
    {
      if (!size || nmemb >= INT_MAX / size)
         return NULL;
      return av_mallocz(nmemb * size);
    }

    I am a c lang primer. I see this function when I read open source. but what kind of function is it ? I have never seen this kind of function before. av_alloc_size(1, 2) and *av_mallocz_array have any relationship ?

  • Android libraries for ffmpeg + stagefright. language c++

    10 décembre 2017, par Serhii Skytyba

    I’v making cross-platform program in c++. In my program for Android platform i need video decoding hw acceleration. I have found out, that I need to look in libstagefright.cpp. which contains ffmpeg library. There I have found next includes :

    #include <binder></binder>ProcessState.h>
    #include <media></media>stagefright/MetaData.h>
    #include <media></media>stagefright/MediaBufferGroup.h>
    #include <media></media>stagefright/MediaDebug.h>
    #include <media></media>stagefright/MediaDefs.h>
    #include <media></media>stagefright/OMXClient.h>
    #include <media></media>stagefright/OMXCodec.h>
    #include <utils></utils>List.h>

    Also, I found out that the source code of these headers is here : https://android.googlesource.com . But I can’t understand in which way to build them. So, my question is : Where can i get these libraries or how can get the source code, that i need to build ? Also, I look for advice which way I can better use Android video decoding hw acceleration + ffmpeg.

  • How to convert a video file into images in c language with libavcodec library ? [on hold]

    25 juillet 2018, par emb-pro

    I am very new to these ffmpeg and libavcodec, I want to produce the images from a video file. I have researched through the internet, I got the resources from dranger’s tutorials. When I was trying to compile that code, I was getting deprecated warnings. I got the updated code from github. Even though I am facing the same problem. Again I got the code from ffmpeg. But it is asking me to provide the correct codec when I am executing.

    I am compiling using the command

    gcc -o tutorial01 tutorial01.c -lavutil -lavformat -lavcodec -lz -lm

    I have installed new versions of ffmpeg, libavcodec, libavformats and libavutilities libraries. I am using ubuntu 16.

    I can update the question if you need any information. Thanks in advance.