Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (6426)

  • ffmpeg how to end video with a black frame/solid color

    10 mai 2021, par request

    I'm scaling 2 videos of different sizes and hstack them side by side together.

    


    If the length of the two videos is different and for example the first one is over, then it shows the last frame of that video the whole time. I want it to show nothing / a black frame until the other video is over

    


    My code so far :

    


    ffmpeg -i vid1.mp4 -i vid2.mp4 -filter_complex "[1][0]scale2ref[2nd][ref];[ref][2nd]hstack" -vsync 0 output.mp4


    


    How could this be achieved ? (something with tpad or stop_mode maybe ?)

    


    Here are two sample videos to test with :

    


    testvid1

    


    testvid1

    


  • FFMPEG : Output tiles onto a black background [closed]

    14 juin 2013, par MollyRazor

    I have the following command, which converts a video and also generates a 10x9
    tileset. Currently it gets the longer side and either generate a 90px wide or
    45px tall tiles. My problem is that each tile has to be 90x45 large, so in
    essence what I need is a properly resized and centered tile inside a black
    bounding box. How can I achieve this ?

    The resulting tile

    result

    What I would like to achieve

    like

    Actual command line

    ffmpeg -i K/vertical.mp4 .... vertical.out.mp4
    ffmpeg -i K/vertical.mp4 -an -vsync vfr \
    -vf select="isnan(prev_selected_t)+gte(t-prev_selected_t\,2)",scale="'if(gt(iw,ih),90,-1)':'if(gt(iw,ih),-1,45)'",tile="10x9" \
    -qscale:v 3 './f/f%03d.jpg'
  • ffmpeg downloading parts of Youtube videos but for some of them they have a black screen for a few seconds

    29 septembre 2021, par user14702793

    So im using ffmpeg to download some youtube videos with specific start and stop times. My code looks like os.system("ffmpeg -i $(youtube-dl --no-check-certificate -f 18 --get-url %s) -ss %s -to %s -c:v copy -c:a copy %s"% (l, y, z, w)) where the variables would all be the name of the file, the url, and the start and stop times. Some of the vidoes come out just fine, others have a black screen and only a portion of the video, and a very few amount have just audio files. My time is formated as x.y where x would be the seconds and y would be the milliseconds. Is this the issue so I need to transform it to 00:00:00.0 format ? Any help is appreciated