Recherche avancée

Médias (91)

Autres articles (111)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (12812)

  • ffmpeg output 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 I still can't understand it and I need your help.

    


  • avfilter/vf_normalize : fix regression with white/black point calculation

    27 octobre 2020, par Paul B Mahol
    avfilter/vf_normalize : fix regression with white/black point calculation
    
    • [DH] libavfilter/vf_normalize.c
  • 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 ?