Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (107)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • FFMpeg HLS output settings required for Approval by the Apple App Store

    23 mai 2016, par JungleGenius

    I have looked all over, but I have not found a direct answer for my question so far.

    What are the minimum required FFMpeg command line output and segmentation settings that will produce a minimum set of all the required HLS .m3u8 and .ts file combinations needed for Approval by the Apple App Store for a Video file played in an App ?

    Note there are older Q&As on here that were written before FFMpeg added native segmentation for HLS. So I’m looking for 100% FFMpeg solution to output what Apple is looking for. I don’t care about the input format for this answer as FFMpeg reads most any file we would want to use.

    Note the correct answer should take into account the setting for maximum bandwidth requirments for the total stream and etc that Apple looks for.

    I bet someone out there has already got this answered, maybe even running in some code but I want to see it posted to save the rest of us some time.

    Thanks !

  • lavc/h264dsp : fix R-V V weight_pixels pointer arithmetic

    17 novembre 2024, par Rémi Denis-Courmont
    lavc/h264dsp : fix R-V V weight_pixels pointer arithmetic
    

    As of 459a1512f13ae1fdd404ff9281b02d225ac70a09,
    the code is unrolled to process two rows per iteration.
    The output cursor thus needs to be incremented by twice the
    stride, which is taken care of with SH1ADD. However the original
    ADD from the original implemetation was incorrectly left over.

    • [DH] libavcodec/riscv/h264dsp_rvv.S
  • lavc/h264idct : fix RISC-V group multiplier

    16 novembre 2024, par Rémi Denis-Courmont
    lavc/h264idct : fix RISC-V group multiplier
    

    After the branch, the expected SEW/LMUL ratio is 1 byte/vector.
    So we have to set the same ratio before branching (QEMU does not care,
    but real hardware does).

    • [DH] libavcodec/riscv/h264idct_rvv.S