Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (108)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12306)

  • Using ffmepg library for decoding H264 data [on hold]

    24 juin 2019, par Moufid

    This is the first time I work in video processing tools.
    The gool is to decode h264 data and display video (or images).

    I found that ffmpeg library could handle those kind of issue.

    But the problem that I have not found :

    • example of code using ffmpeg library to decode h264 data
    • h264 input data to test the program with.

    Could you please help.

  • Determining size of data[0] in AVFrame of FFMPEG

    27 mars 2015, par user2742299

    I am relatively new to FFMPEG andII am trying to allocate AVFrame->data[0] of a video frame to uint8_t* buffer using the following lines of code :

    size_t sizeOfFrameData = mpAVFrameInput->linesize[0] * mpAVFrameInput->height;

    memcpy(mFrameData, mpAVFrameInput->data[0], sizeOfFrameData);

    I would like to know if this is a correct way of copying frame data to uint8_t* variable in FFMPEG ?

    Thanks

  • mpeg12dec : do not add stereo3D side data to a non-existing frame

    13 février 2014, par Janne Grunau
    mpeg12dec : do not add stereo3D side data to a non-existing frame
    

    User data is usually coded before slice data. That means the frame
    the user data belongs to is not available while parsing the user data.
    The stereo3D side data has to use the same indirection over the private
    context as pan scan information and A53 captions.

    Bug-Id:632

    • [DH] libavcodec/mpeg12dec.c