Recherche avancée

Médias (91)

Autres articles (60)

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

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6882)

  • ffmpeg How to SCROLL (draw text) on an overlayed image not on the main video

    17 juillet 2020, par Tony Hanna

    i want to draw a scrolling text with left and right margin over an OVERLAYED image .. like let's say a BREAKING NEWS Header and then below it the scrolling text.. but i dont want the scrolling to start at the point 0 .. i wanted to be bound by the image overlay position and margins .. i tried this code :

    


    ffmpeg -re -i lethal.mkv -i template.png -filter_complex "[1:v]drawtext =fontsize=24:fontcolor=white:fontfile='arial.ttf':textfile='test.txt':x=w-mod(max(t-1\,0)*(80)\, 2*(tw+100)):y=10[1v];[0:v][1v]overlay=30:30[over]" -map [over] -c:a copy -c:v libx264 -f mpegts udp://224.2.2.1:1234

    


    when i do that .. the text doesn't show .. or i'm guessing it's showing behind the image .. i don't know ! Any help please

    


  • avcodec/iff : Fix several integer overflows

    10 mai 2020, par Michael Niedermayer
    avcodec/iff : Fix several integer overflows
    

    Fixes : negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int') ; cast to an unsigned type to negate this value to itself
    Fixes : signed integer overflow : -2147483648 - 1 cannot be represented in type 'int32_t' (aka 'int')
    Fixes : 20492/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_IFF_ILBM_fuzzer-5764066459254784

    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/iff.c
  • avcodec/dvdsub : Fix warning about incompatible pointer type

    14 février 2020, par Andreas Rheinhardt
    avcodec/dvdsub : Fix warning about incompatible pointer type
    

    Fixes "passing argument 2 of ‘strtoul’ from incompatible pointer
    type [-Wincompatible-pointer-types]" ("expected ‘char ** restrict’ but
    argument is of type ‘const char **’") for GCC and "passing 'const char
    **' to parameter of type 'char **' discards qualifiers in nested pointer
    types [-Wincompatible-pointer-types-discards-qualifiers]" for Clang.

    The cast itself is safe ; it is only needed because strtoul itself is not
    const-correct.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/dvdsub.c