Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (85)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (8012)

  • Why does my H.264 video have a green overlay after video filter is applied ?

    11 juin 2019, par d1che

    When executing the following code :

    ffmpeg -i input.mov -c:v libx264 -preset veryslow -pix_fmt yuv420p -filter_complex "drawtext=fontfile=font.ttf:fontcolor=white@1:fontsize=h/6:x=(w-text_w)/2:y=(h-text_h)/2:text='Henk de Vries'[watermark];[0][watermark]blend=all_mode=difference:all_opacity=1" output.mp4

    The output file has a green overlay. When using other blend modes, results vary with some modes displaying correct colors and others green and pink.

    I know that the input file has yuv420p colorspacing. I think the blend filter only supports rgba modes but I am not sure.

    How can I avoid the green overlay and get the original colors ? (e.i. what the original input video looks like)

  • Why does my H.264 video have a green overlay after video filter is applied ?

    11 juin 2019, par d1che

    When executing the following code :

    



    ffmpeg -i input.mov -c:v libx264 -preset veryslow -pix_fmt yuv420p -filter_complex "drawtext=fontfile=font.ttf:fontcolor=white@1:fontsize=h/6:x=(w-text_w)/2:y=(h-text_h)/2:text='Henk de Vries'[watermark];[0][watermark]blend=all_mode=difference:all_opacity=1" output.mp4

    



    The output file has a green overlay. When using other blend modes, results vary with some modes displaying correct colors and others green and pink.

    



    I know that the input file has yuv420p colorspacing. I think the blend filter only supports rgba modes but I am not sure.

    



    How can I avoid the green overlay and get the original colors ? (e.i. what the original input video looks like)

    


  • FFMpeg video stopmotion

    22 juillet 2020, par Praveen Tamil

    I would like to create stop motion video from original video.
The logic is take frame at specified interval. 
And play the video with specified playback rate.

    



    For example,
    
The original video duration is 114.048 seconds.
    
The output video playback rate 5 times faster than source video.
    
Take each frame at the interval of 1 seconds. so the final video duration should be (22.81 = 114.048/1*0.2) seconds

    



    Below is the screenshot of demoenter image description here

    



    For this I need ffmpeg code

    



    ffmpeg -r 1 -i D:\21-03-2018\15305154945b39d026a18da.mp4 D:\21-03-2018\output.mp4