Recherche avancée

Médias (91)

Autres articles (60)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (9190)

  • ffmpeg-python outputs black screen when trying to save as mp4

    3 mars 2023, par Saya

    This is my code. I am trying to make a video out of all pictures in the pics2 directory using ffmpeg.

    


    import subprocess

command = 'ffmpeg -framerate 1 -i "pics2/Image%02d.png" -r 1 -vcodec libx264 -s 1280x720 -pix_fmt yuv420p Output.mp4'
p = subprocess.call(command, shell=True)


    


    This saves an Output.mp4 successfully but the video has no frames (It is completely black)

    


    How do I solve this ?

    


  • Capture a webcam continuously, capturing on-demand to image file

    12 février 2015, par krye

    I am trying to set up a webcam stream that I can take pictures from, using ffmpeg. I’m not sure as to how to set everything up ; I’d like to use RTSP and have a ffmpeg (or ffserver or any combination thereof) instance dumping the webcam stream into a stream, and having another client that would get passively opened that would capture a frame instantaneously with proper synchronization and such.

    The problem I’m encountering is in getting this set up. There seem to be many conflicting responses to this question out there.

    I’d like to read from either /dev/video0 or /dev/video1 (using the video4linux2 format/protocol), and I’d like to capture the frames and store them as PNG images.

    Any help would be greatly appreciated.

  • FFMPEG Fade in and Fade out for Overlay

    18 novembre 2015, par Thommy

    I’m trying to add Overlay-Pictures to my video via FFMPEG (on Android). For know I managed to display the Image between a certain time span. But now, additionally, I want to add a fade in and fade out animation.
    Here is what I have so far :

    ArrayList<string> cmd = new ArrayList<string>(); cmd.add("-i");
    cmd.add("video.mp4");
    cmd.add("-i");
    cmd.add("../image.png");
    cmd.add("-filter_complex");
    cmd.add("overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:enable='between(n,1,12)'");
    cmd.add("out.mp4");
    </string></string>

    How do I need to add the Fade in and Fade Out options.