Recherche avancée

Médias (91)

Autres articles (65)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9446)

  • avformat : add acm demuxer

    30 octobre 2015, par Paul B Mahol
    avformat : add acm demuxer
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavformat/Makefile
    • [DH] libavformat/acm.c
    • [DH] libavformat/allformats.c
    • [DH] libavformat/version.h
  • Phantom Cine demuxer (iteration 2014.3)

    15 mars 2014, par Peter Ross
    Phantom Cine demuxer (iteration 2014.3)
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavformat/Makefile
    • [DH] libavformat/allformats.c
    • [DH] libavformat/cinedec.c
  • How to get raw frame data from AVFrame.data[] and AVFrame.linesize[] without specifying the pixel format ?

    25 janvier 2016, par vivienlwt

    I get the general idea that the frame.data[] is interpreted depending on which pixel format is the video (RGB or YUV). But is there any general way to get all the pixel data from the frame ? I just want to compute the hash of the frame data, without interpret it to display the image.

    According to AVFrame.h :

    uint8_t* AVFrame::data[AV_NUM_DATA_POINTERS]

    pointer to the picture/channel planes.

    int AVFrame::linesize[AV_NUM_DATA_POINTERS]

    For video, size in bytes of each picture line.

    Does this mean that if I just extract from data[i] for linesize[i] bytes then I get the full pixel information about the frame ?