Recherche avancée

Médias (91)

Autres articles (95)

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

  • Combining two ffmpeg commands into one command [closed]

    19 janvier 2024, par Tuan Le

    I want to combine two ffmpeg commands to single ffmpeg command (1. combine multiple photos into a video ; 2. add music to the newly created video)

    


    1
ffmpeg -r 0.1 -s 1080x1620 -i pictures/%03d.jpeg -vcodec libx264 -crf 25 video1.mp4

    


    2
ffmpeg -i video1.mp4 -stream_loop -1 -i audio2.mp3 -map 0:v -map 1:a -c copy -shortest output.mp4

    


    (Actually I have very little knowledge of ffmpeg so please excuse my foolishness)
Please help me with my issue

    


  • avformat/asfdec : Use a parser for mpeg4-asp to find has_b_frames

    3 juin 2014, par Michael Niedermayer
    avformat/asfdec : Use a parser for mpeg4-asp to find has_b_frames
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/asfdec.c
  • How to add 3D-Text to a video programmatically

    7 décembre 2019, par hmrc87

    I’m looking for a fast, efficient solution to add text to a video. I tried the CLI from ffmpeg but I think it only lets me add 2D-Text. I want to be able to create Text and /or images and Rotate / Skew them in "3D-Space".

    Is this possible via CLI of some video processing tools or do I have to get into OpenCV etc.?