Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (74)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (4717)

  • Capture Windows screen with ffmpeg

    26 juin 2015, par kamae

    The ffmpeg is cross-platform and very powerful software to handle video/audio or to stream it.
    On Linux ffmpeg can capture X11 screen with a command below :

    ffmpeg -f x11grab -r 25 -s cif -i :0.0 out.mpeg

    But is it possible to grab Windows Desktop with ffmpeg ?

  • How to add creation_time to a screen recording done using ffmpeg [closed]

    13 décembre 2023, par Mehul Singhal

    I am recording my screen using ffmpeg in ubuntu. I would like to add a field creation_time to the metadata of created mp4 file. I want to add creation_time when the screen recording command is executed.
How can I extract creation_time after the file is created ? Any help is appreciated. Thanks !!!

    


    I tried to add flag -metadata creation_time=$creation_time, but when I do ffmpeg -i output.mp4 I cannot find creation_time in the metadata.

    


  • How to route FFMPEG screen capture output to Python for OpenCV processing ?

    16 décembre 2016, par Bitani

    I am trying to capture the screen of a Mac, specifically game windows, and process them in real-time using OpenCV. I currently have it working with pyscreenshot and a conversion to a numpy array, but the max framerate of this method, on any system, appears to be around 10 FPS.

    Obviously with games it would be very beneficial to be able to process 30+ FPS, and so I found that FFMPEG could record the screen using this command :

    ffmpeg -y -f avfoundation -capture_cursor 1 -i "1" -pix_fmt yuv420p -vf scale=1024:-1 -r 30 out.mp4

    That will write the screen to a file, out.mp4, with a width of 1024 and a frame rate of 30 FPS. Works perfectly ! But now I’ve searched and searched and searched for a method to route FFMPEG’s output to Python and.. no luck.

    If anybody knows of a way to do this I would be greatly appreciative, as I’ve been trying to solve this for quite a while !

    Thanks, and happy holidays !