Recherche avancée

Médias (91)

Autres articles (78)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11584)

  • Read DVD Metadata e.g chapters duration and titles using c# or other language

    11 octobre 2013, par user2658536

    I need investigate a DVD structure Using code for example c# or ffmpeg.
    I need information about the number of chapters in DVD(duration of each chapter,titles and VOB related)

    searching in google I found this http://www.codeguru.com/cpp/controls/controls/lists,treesandcombos/article.php/c12025/DVD-Explorer.htm

    This seems like exactly what I need and the exe is working, but the solution seems to be very old and I cant execute it in VS2010 and progrematically extract data.

    Is there any simple way to analyze the IFO file within the DVD using C# or something like that ? or some software that run from cmd and output the answers.

    thanks

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

  • mpegts muxer : Change the default subtitle language to "und"

    24 janvier 2014, par Serhii Marchuk
    mpegts muxer : Change the default subtitle language to "und"
    

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mpegtsenc.c