Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (107)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (11007)

  • The terminal is blocked while configuring ffmpeg by using mingw/msys

    9 décembre 2020, par Make.Liu

    I am trying to compile ffmpeg by mingw, but my terminal is blocked while running configure command and nothing happenenter image description here

    


  • avoiding running of FFmpeg on terminal/cmd

    14 janvier 2021, par Education 4Fun

    I'm using FFmpeg for a small project so I built a GUI basic application for video editing
here is the image
enter image description here

    


    Everything is working fine but I just want to avoid opening the terminal for the FFmpeg process the reason the terminal is opening is because

    


    I used os.system("FFmpeg command here")


    


    so is there a way to import FFmpeg completely and avoid using terminal and run in code
    
if u have any idea please suggest and let me know
    
for gui i used PYQT5 and python to code
    
Thank you

    


    Tried using subprogram but didn't work (worked for normal commands but not for ffmpeg)
I need the output to print also to store in a python variable
Please check the image for more info

    


    enter image description here

    


  • C++ code for ffmpeg terminal command [on hold]

    17 janvier 2018, par KingWealth

    Platform - Linux
    I created a v4l2loopback device by following the guide.
    The following terminal command is used to write the video testsrc.avi into the loopback device /dev/video1

    ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1

    Now the question is, I want the c++ code for the above mentioned to terminal comment.

    Note - c++ code for -f v4l2 /dev/video1 is enough too.

    The actual program and logic is really long and irrelevant to explain.
    The problem is, i want to write ffmpeg avframes into the loopback device but using fwrite is giving disturbed output.