Recherche avancée

Médias (91)

Autres articles (43)

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

  • write_gif is automatically changing the resolution of the resultant gif as compared to the supplied video(mp4) file ? How to avoid that ?

    14 septembre 2022, par Mohammed Hussain

    Please see the code below and the result. How can we get the gif in the original dimensions. The moviepy documentation doesn't seem to say much.

    


    from moviepy.editor import *  import os  os.chdir(r'G:\')  clip = VideoFileClip("VID.mp4").subclip(6*60, 6.1*60) clip.write_gif("vidgif.gif",program = 'ffmpeg')

    


    enter image description here

    


  • When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate

    2 septembre 2022, par SevenFantastic

    I tried to use this code, but ffmpeg doesn't recognize this way of writing

    


    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)"  -f mp4 -y output.mp4


    


    even replace the iw to const 1000, it doesn`t work.

    


    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)"  -f mp4 -y output.mp4


    


    But this way of writing it works fine I'm baffled

    


    ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4


    


  • g2m : Relax resolution change constraints

    7 octobre 2015, par Vittorio Giovara
    g2m : Relax resolution change constraints
    

    Do not fail when original resolution is smaller than current one,
    as the frame buffer is resized automatically.

    Signed-off-by : Vittorio Giovara <vittorio.giovara at gmail.com>

    • [DBH] libavcodec/g2meet.c