Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (41)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11591)

  • avcodec/jpeglsenc : Remove redundant implicit checks

    29 avril 2021, par Andreas Rheinhardt
    avcodec/jpeglsenc : Remove redundant implicit checks
    

    Now that the proper buffer size is calculated (and checked) before
    allocating the buffer, it is known that the buffer always suffices.
    So use the unchecked PutBit-API ; and also use an unchecked bitstream
    reader as we check ourselves.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/jpeglsenc.c
  • golomb : Simplify get_ur_golomb_jpegls

    11 avril 2017, par Luca Barbato
    golomb : Simplify get_ur_golomb_jpegls
    

    The loop always consumes the bit read and the new bitstream reader
    can read 0 bits just fine.

    • [DBH] libavcodec/golomb.h
  • avformat/udp : cancel pending IO on win32 manually

    26 janvier 2020, par Marton Balint
    avformat/udp : cancel pending IO on win32 manually
    

    recvfrom() is not a cancellation point in pthreads-win32, see
    https://sourceware.org/pthreads-win32/manual/pthread_cancel.html

    In order to be able to cancel the reader thread on Win32 properly we first
    shutdown the socket then call CancelIoEx to abort pending IO. Subsequent
    recvfrom() calls will fail with WSAESHUTDOWN causing the thread to exit.

    Fixes ticket #5717.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/udp.c