Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (99)

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

  • How to get the highest resolution, dividable by 2 that contains the video without black borders after rotation ?

    22 avril 2016, par Vitalis Hommel

    I rotate a video. Then my goal is to get the biggest resolution, dividable by 2 that contains the video without black borders.

    rotated and bigger

    to

    rotated, smaller and dividable by 2

    My approach.

    ffmpeg -ss 6 -i "t.MP4" -ss 0 -t 5 -vf "rotate='8*PI/180:ow=hypot(iw,ih):oh=ow', scale='1920:1920', crop='1920:1080:0:420'" -c:v libx264 -crf 28 -acodec copy "t2.MP4"

    But that does not meet the criteria. Which command do I need ?

  • lavfi/selectivecolor : fix picking black as neutral when alpha is present

    24 juillet 2016, par Clément Bœsch
    lavfi/selectivecolor : fix picking black as neutral when alpha is present
    
    • [DH] libavfilter/vf_selectivecolor.c
  • ffmpeg ouput the time with scan the black screen in the vdeo file

    23 décembre 2023, par jack

    I use the below command to detect the black screen in the video, but it can't output

    


    the time field with detected. May I know does have any command can let ffmpeg

    


    output the time in the detected ?

    


    ffmpeg -i "inputfile.mkv" -vf "blackdetect=d=2:pix_th=0.00" -an -f null -


    


    output :

    


    [blackdetect @ 0000024d543c41c0] black_start:876.009 black_end:878.011 black_duration:2.002

[blackdetect @ 0000024d543c41c0] black_start:893.026 black_end:895.028 black_duration:2.002


    


    I checked the below of ffmpeg website

    


    https://ffmpeg.org/ffmpeg-filters.html


    


    , but still can't understand it and need help.