Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (90)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (10708)

  • How to record multiple screens and audio at once on MacBook using ffmpeg ?

    30 décembre 2019, par GeneralCode

    Task

    I want to be able to record three screens at one time, and record the microphone. Then combine the three recordings and the microphone recording into one output file.

    Detection of inputs

    The listing of both video and audio inputs can be found by using ffmpeg -f avfoundation -list_devices true -i "". This is can be found here.

    One Screen Recording

    I can record one of my three screens at a time by using ffmpeg -f avfoundation -i "3" -pix_fmt yuv420p -r 25 output.mov, where the "3" can be replaced with "1" or "2" to individually record one screen for 5 seconds. This is found at recording one screen for a duration of time.

    Post Process videos into one screen recording

    The most recent version of ffmpeg provides for combining multiple .mov files into one "stack". Stacking screen recordings discusses how to post process videos into one output file.

    Record audio

    The audio of the built in microphone or usb microphone can be recorded using ffmpeg -f avfoundation -i ":1" audiocapture.mp3. A description of this command can be found at recording audio with ffmpeg.

    What I want

    The following recorded until I hit q, with a good quality audio.

    ---------------------------------
    |               |               |
    |  1920 X 1080  |  1920 X 1080  |
    |               |               |
    ---------------------------------
       -----------------
       |               |
       |  2560 X 1600  |  
       |               |
       -----------------

    Current Progress

    This command :
    ffmpeg -f avfoundation -i "3" -pix_fmt yuv420p -r 25 -f avfoundation -i "2" -pix_fmt yuv420p -r 25 -f avfoundation -i "1" -pix_fmt yuv420p -r 25 -filter_complex "[0:v][1:v][2:v]xstack=inputs=3:layout=0_0|w0_0|0_h0[v]" -map "[v]" output.mov results in
    The three screens with thread message queue blocking warning

    I am getting the message Thread message queue blocking; consider raising the thread_queue_size option (current value: 8), and do not know how to handle this. I also am not recording audio here.

  • avutil/avstring : do not lose ascii characters when decoding non utf-8 with av_utf8_de...

    12 avril 2014, par Michael Niedermayer
    avutil/avstring : do not lose ascii characters when decoding non utf-8 with av_utf8_decode()
    

    Fixes Ticket3363

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

    • [DH] libavutil/avstring.c
  • avfilter/vf_bilateral : stop using sigmaS as percent of width/height

    17 juillet 2020, par Paul B Mahol
    avfilter/vf_bilateral : stop using sigmaS as percent of width/height
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_bilateral.c