Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (80)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8556)

  • Revision b0a2871c35 : Merge "Adjust Speed 0 settings."

    3 juillet 2013, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Merge "Adjust Speed 0 settings."

  • avcodec/golomb : Speed up long ur_golomb codes

    9 novembre 2018, par Michael Niedermayer
    avcodec/golomb : Speed up long ur_golomb codes
    

    Fixes : Timeout
    Fixes : 10972/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5707569640243200

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/golomb.h
  • configure : speed up print_enabled_components()

    30 juillet 2018, par Avi Halachmi (:avih)
    configure : speed up print_enabled_components()
    

    x4 - x10 faster.

    Inside print_enabled components, the filter_list case invokes sed
    about 350 times to parse the same source file and extract different
    info for each arg. This is never instant, and on systems where fork is
    slow (notably MSYS2/Cygwin on windows) it takes many seconds.

    Change it to use sed once on the source file and set env vars with the
    parse results, then use these results inside the loop.

    Additionally, the cases of indev_list and outdev_list are very
    infrequent, but nevertheless they're faster, and arguably cleaner, with
    shell parameter substitutions than with command substitutions.

    Tested-by : Michael Niedermayer <michael@niedermayer.cc>
    Tested-by : Helmut K. C. Tessarek <tessarek@evermeet.cx>
    Tested-by : Dave Yeo <daveryeo@telus.net>
    Tested-by : Reino Wijnsma <rwijnsma@xs4all.nl>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] configure