Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (12)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

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

  • FFMPEG gdigrab not stopping when title changes

    13 avril 2021, par Vishwesh

    I am trying to capture a video playlist using ffmpeg gdigrab. The player takes in input a batch of videos. I want to create a separate video for each loaded file in the player. I was able to use ffmpeg gdigrab to capture the video for one video. The problem is, it does not stop when the window title changes (that is when the next file is loaded), and instead it creates just one file for the entire duration. The only way to stop it was if I close the entire window. The reason I can't go ahead with it is because the user will be given an option to change any settings in the beginning of the recording and then the entire playlist will use the same settings.

    


    I also tried other options like using subprocess.Popen to start the ffmpeg and then using .terminate() or .kill() to stop it, but the recording still keeps on going. Similarly, sending 'q' key from a file did not work either.

    


    Ideally, I would expect that gdigrab should be able to detect when the grabbed window title differs from the expected one and stop, however, here it looks like it's anchoring itself to the window instead of the title.

    


    I am using a Windows 10 PC and programming language for this tool is Python. I am using ffmpeg version 4.4-full_build.

    


    If you have any ideas regarding this, it would be of great help.

    


  • ffmpeg - reduce background audio noise when recording desktop screen with gdigrab

    17 juillet 2020, par Riz

    I have an application that records desktop screen using FFmpeg. Here is the command I use

    


    ffmpeg.exe -threads 4 -rtbufsize 2048m -f dshow -i audio="Microphone (Realtek Audio)"  -f gdigrab -offset_x 1 -offset_y 1 -video_size 768x432 -probesize 4096M -i desktop -pix_fmt yuv420p -c:v libx264 -crf 28 -preset ultrafast -tune zerolatency -movflags +faststart -r 15 recording.mp4


    


    It works fine. But I want to reduce the background noise from the audio. I have found some native filters for this

    


    


    But not sure how to use them while recording screen. Can you please help ?

    


  • Ffmpeg gdigrab records black window when capturing graphics-intensive flight simulator

    23 mars 2021, par iter

    I am trying to capture video from XPlane, a popular flight simulator. I'm running on Windows.

    



    Normally, I can capture individual windows using gdigrab, but when I use it on an XPlane window like so...

    



    ffmpeg -f gdigrab -framerate 30 -i "X-System" -b:v 300K capture.mp4


    



    ...I get a video file that's the right dimensions but is all black. I imagine this may have something to do with how XPlane talks directly to the GPU. I should add that if I capture the entire desktop like so...

    



    ffmpeg -f gdigrab -framerate 30 -i desktop -b:v 300K capture.mp4


    



    ...I get everything including the simulator window, but naturally with unrelated windows in the capture, including windows sitting on top of the simulator window.

    



    Is there a way for gdigrab to capture video this GPU-intensive window alone ? Is there a different tool I can use ?