Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (105)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (11329)

  • FFmpeg remove background of video with no black outline

    26 février 2024, par Duc Pham The

    Im using this ffmpeg command to overlay a video on video(with remove black background)

    


    ffmpeg -i /home/ducpt/bunny.mp4 -i overlay_video.mp4 -filter_complex "[1:v]colorkey=0x000000:0.1:0.1[ckout];[0:v][ckout]overlay=enable='between(t,0, 4)':format=rgb[out]" -map '[out]' output.mp4


    


    I used filter_complex "colorkey 0x000000:0.1:0.1" to remove background of overlay video but result have a black outline.

    


    This is screenshot of video overlay original
Overlay Original

    


    And this is result

    


    enter image description here

    


    I tried to use unpremultiply=inplace=1 to remove black outline but not working

    


    ffmpeg -i /home/ducpt/bunny.mp4 -i overlay_video.mp4 -filter_complex "[1:v]colorkey=0x000000:0.1:0.1[ckout];[ckout]unpremultiply=inplace=1 [ckout2];[0:v][ckout2]overlay=enable='between(t,0, 4)':format=rgb[out]" -map '[out]' output.mp4


    


    Please help me remove black outline :(

    


    Sorry for my bad English !

    


  • avfilter/vsrc_testsrc : fix colorchart black stripe

    9 janvier 2024, par Vladimir Petrov
    avfilter/vsrc_testsrc : fix colorchart black stripe
    

    Fixed blackstripe on bottom or segmentation fault in case
    when patch width and height differ.

    Signed-off-by : Vladimir Petrov <vppetrovmms@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vsrc_testsrc.c
  • 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 ?

    &#xA;

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

    &#xA;

    Output :

    &#xA;

    [blackdetect @ 0000024d543c41c0] black_start:876.009 black_end:878.011 black_duration:2.002&#xA;&#xA;[blackdetect @ 0000024d543c41c0] black_start:893.026 black_end:895.028 black_duration:2.002&#xA;

    &#xA;

    I checked the below of ffmpeg website

    &#xA;

    https://ffmpeg.org/ffmpeg-filters.html&#xA;

    &#xA;

    but I still can't understand it and I need your help.

    &#xA;