Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (101)

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

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • avformat/tls_openssl : clean up peer verify logic in dtls mode

    13 juillet, par Timo Rothenpieler
    avformat/tls_openssl : clean up peer verify logic in dtls mode
    
    • [DH] libavformat/tls_openssl.c
  • AAC encoder : tweak rate-distortion logic

    23 septembre 2015, par Claudio Freire
    AAC encoder : tweak rate-distortion logic
    

    This patch modifies the encode frame function to
    retry encoding the frame when the resulting bit count
    is too far off target, but only adjusting lambda
    in small, incremental step. It also makes the logic
    more conservative - otherwise it will contend with
    bit reservoir-related variations in bit allocation,
    and result in artifacts when frame have to be truncated
    (usually at high bit rates transitioning from low
    complexity to high complexity).

    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/aacenc.h
    • [DH] libavcodec/aacpsy.c
    • [DH] libavcodec/psymodel.h
    • [DH] tests/fate/aac.mak
  • FFMpeg ftruncate logic

    3 septembre 2017, par thomasgeorgec

    I am trying to implement trimming for amr codec, in ffmpeg. I parsed the file and found the position ( ie, I got the size of resulting file). but there is no api implemented for ftruncate, like it have url_fseek(),url_ftell() etc. can I directly call ftruncate() ? or Do i need to implement url_ftruncate() ?