Recherche avancée

Médias (91)

Autres articles (58)

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

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

  • lavc/libaribb24 : add error handling to region handling

    11 février 2019, par Jan Ekström
    lavc/libaribb24 : add error handling to region handling
    

    Fixes some rather embarrassing mistakes that somehow passed my
    eyes.

    * Now catches if memory allocation has failed during bprint usage
    by checking av_bprint_is_complete().
    * Now catches if adding an ASS rectangle into an AVSubtitle failed.
    * Returns AVERROR_INVALIDDATA if we get an invalid region buffer
    length.

    • [DH] libavcodec/libaribb24.c
  • Delay in video playback. Not able to identify the cause - AWS S3 region / ffmpeg / Videojs

    17 septembre 2016, par Himansu Kisan

    We are not able to identify the cause for random behavior while playing video on our website. (Sorry, cant share a link since the videos are for registered users only)
    The videos sometimes plays instantly and sometimes it takes over 1 minute to start. Not sure what we are doing wrong.

    We are using AWS S3 Oregon region (not the closest to target region, but it is cheaper) to store video files.
    The video files are encoded using ffmpeg. Below is the syntax

    ffmpeg -i input.mts -codec:v libx264 -threads 4 -movflags +faststart -profile:v high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale="trunc(oh*a/2)*2:720" "output.mp4"

    ffmpeg -i input.mts -codec:v libvpx -threads 4 -quality good -cpu-used 5 -b:v 500k -maxrate 500k -bufsize 1000k -qmin 10 -qmax 42 -vf scale="trunc(oh*a/2)*2:720" -codec:a libvorbis -b:a 128k "output.webm"

    On website, we are using Videojs 5.10.8.
    Below is the code snippet

    <video class="video-js vjs-default-skin vjs-big-play-centered" preload="none" controls="controls" poster="abcd.jpg" style="width:100%;height:100%;min-height:360px;" data-setup="{&quot;autoplay&quot;:true}">
    <source src="abcd.mp4" type="video/mp4"></source>
    <source src="adcd.webm" type="video/webm"></source>
    <p class="vjs-no-js">
       To view this video please enable JavaScript, and consider upgrading to a web browser
       that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
    </p>
    </video>

    What are we doing wrong ? Please help us out.

  • vp9/x86 : set correct number of registers used in intra pred asm

    17 février 2014, par Hendrik Leppkes
    vp9/x86 : set correct number of registers used in intra pred asm
    

    Reviewed-by : "Ronald S. Bultje" <rsbultje@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/vp9intrapred.asm