Recherche avancée

Médias (91)

Autres articles (97)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

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

  • Revision 4309 : Un fichier qui ne semble plus utilisé Le truc de complexité de pass un ...

    31 octobre 2010, par kent1 — Log

    Un fichier qui ne semble plus utilisé Le truc de complexité de pass un peu mieux

  • configure : Don't pass -mfp16-format to MSVC on ARM

    21 décembre 2023, par Martin Storsjö
    configure : Don't pass -mfp16-format to MSVC on ARM
    

    The check for this option does succeed - MSVC accepts the option,
    but prints a warning about it being unknown and ignored, for
    each compiled object file :

    cl : Command line warning D9002 : ignoring unknown option '-mfp16-format=ieee'

    The configure script only attempts to add this option on ARM,
    therefore this warning isn't seen by the majority of people
    building with MSVC.

    Making this option into a no-op probably isn't entirely right,
    but on the other hand, we don't want to litter the code that
    checks for support for the option with compiler specific
    conditions either.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • lavc/hevcdec : do not pass a pixel format to set_sps()

    12 juin 2024, par Anton Khirnov
    lavc/hevcdec : do not pass a pixel format to set_sps()
    

    It is merely copied to AVCodecContext.pix_fmt, which serves no useful
    purpose. set_sps() is called from two places :
    * when a new SPS becomes active - then the pixel format is
    overridden immediately after the set_sps() call by the result from
    ff_get_format() ;
    * when a new SPS is propagated across frame threads - then the
    AVCodecContext value is already set to the same value by the generic
    code.

    • [DH] libavcodec/hevc/hevcdec.c