Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (111)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

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

Sur d’autres sites (11694)

  • libavcodec/webp : treat out-of-bound palette index as translucent black

    16 septembre 2014, par Pascal Massimino
    libavcodec/webp : treat out-of-bound palette index as translucent black
    

    See https://code.google.com/p/webp/issues/detail?id=206
    for a description of the problem/fix.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    This patch makes the decoder follow the recommendation of the spec.
    There is some disagreement (see "[FFmpeg-devel] [PATCH] : libavcodec/webp")
    about what would be best to be written in the spec, so in case the spec
    is changed again, this potentially would need to be amended or reverted

    • [DH] libavcodec/webp.c
  • ffmpeg overlay picture is a black rectangle

    6 juin 2023, par robert

    I'm trying to overlay several images over an existing video, with the first image coming in with a fade-in effect. But instead I'm getting a black rectangle in place of the picture. But if I skip the fade-in and just put [img0] after decrease like so decrease[img0] then it works (but without fade in)

    &#xA;

    please advise. TY

    &#xA;

    -y&#xA;-i "G:\...\Videos\BLANK.mp4" &#xA;-i "G:\...\Front\1.jpg" &#xA;-i "G:\...\Front\2.jpg" &#xA;-i "G:\...\Front\3.jpg" &#xA;-i "G:\...\Front\4.jpg" &#xA;-i "G:\...\Front\5.jpg" &#xA;-i "G:\...\Front\6.jpg" &#xA;&#xA;-filter_complex [1:v]scale=880:545:force_original_aspect_ratio=decrease,fade=t=in:st=2.6:d=1[img0];&#xA;[0:v][img0]overlay=x=&#x27;if(lte(2.6-t,0),450,NAN)&#x27;:y=&#x27;if(lte(2.6-t,0),5,NAN)&#x27;:enable=&#x27;between(t,2.6,4)&#x27;[v0];&#xA;[2:v]scale=880:545:force_original_aspect_ratio=decrease[img1];&#xA;[v0][img1]overlay=x=&#x27;if(lte(4-t,0),450,NAN)&#x27;:y=&#x27;if(lte(4-t,0),5,NAN)&#x27;:enable=&#x27;between(t,4,5.6)&#x27;[v1];&#xA;[3:v]scale=880:545:force_original_aspect_ratio=decrease[img2];&#xA;[v1][img2]overlay=x=&#x27;if(lte(5.6-t,0),450,NAN)&#x27;:y=&#x27;if(lte(5.6-t,0),5,NAN)&#x27;:enable=&#x27;between(t,5.6,6.3)&#x27;[v2];&#xA;[4:v]scale=880:545:force_original_aspect_ratio=decrease[img3];&#xA;[v2][img3]overlay=x=&#x27;if(lte(6.3-t,0),450,NAN)&#x27;:y=&#x27;if(lte(6.3-t,0),5,NAN)&#x27;:enable=&#x27;between(t,6.3,6.9)&#x27;[v3];&#xA;[5:v]scale=880:545:force_original_aspect_ratio=decrease[img4];&#xA;[v3][img4]overlay=x=&#x27;if(lte(6.9-t,0),450,NAN)&#x27;:y=&#x27;if(lte(6.9-t,0),5,NAN)&#x27;:enable=&#x27;between(t,6.9,7.4)&#x27;[v4];&#xA;[6:v]scale=880:545:force_original_aspect_ratio=decrease[img5];&#xA;[v4][img5]overlay=x=&#x27;if(lte(7.4-t,0),450,NAN)&#x27;:y=&#x27;if(lte(7.4-t,0),5,NAN)&#x27;:enable=&#x27;between(t,7.4,7.9)&#x27;[v5];&#xA;&#xA; -map [v5] -map 0:a -c:v libx264 -c:a copy "G:\...\Videos\ffmpeg\output.mp4"&#xA;

    &#xA;

  • add black&silence to beginning of a video

    21 août 2020, par Richard

    Hi I am struggling to add black&silence to the begining of a video with ffmpeg. I did search a lot but they look too complex for me.&#xA;Below command is what I find to add black&silence to the end of of video, now how can I tune it to the beginning of a video ?

    &#xA;

    ffmpeg -i input.mp4 -f lavfi -i color=s=1920x1080:d=10 -filter_complex [0:v][1]concat -af [0]apad -shortest output.mp4&#xA;

    &#xA;

    Looks I need to use adelay instead of apad, below is the command that makes sense to me, but the audio is not delayed.

    &#xA;

    ffmpeg -i input.mp4 -f lavfi -i color=s=1920x1080:d=10 -filter_complex [1][0:v]concat -af [0]adelay=10  output.mp4&#xA;

    &#xA;

    Here is the input info and ffmpeg version :

    &#xA;

    ffmpeg -i input.mp4 &#xA;ffmpeg version 4.2.1-static https://johnvansickle.com/ffmpeg/  Copyright (c) 2000-2019 the FFmpeg developers&#xA;  built with gcc 6.3.0 (Debian 6.3.0-18&#x2B;deb9u1) 20170516&#xA;  configuration: --enable-gpl --enable-version3 --enable-static --disable-debug --disable-ffplay --disable-indev=sndio --disable-outdev=sndio --cc=gcc-6 --enable-fontconfig --enable-frei0r --enable-gnutls     --enable-gmp --enable-libgme --enable-gray --enable-libaom --enable-libfribidi --enable-libass --enable-libvmaf --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb     --enable-libopencore-amrwb --enable-libopenjpeg --enable-librubberband --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libvorbis --enable-libopus --enable-libtheora --enable-libvidstab     --enable-libvo-amrwbenc --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libdav1d --enable-libxvid --enable-libzvbi --enable-libzimg&#xA;  libavutil      56. 31.100 / 56. 31.100&#xA;  libavcodec     58. 54.100 / 58. 54.100&#xA;  libavformat    58. 29.100 / 58. 29.100&#xA;  libavdevice    58.  8.100 / 58.  8.100&#xA;  libavfilter     7. 57.100 /  7. 57.100&#xA;  libswscale      5.  5.100 /  5.  5.100&#xA;  libswresample   3.  5.100 /  3.  5.100&#xA;  libpostproc    55.  5.100 / 55.  5.100&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;input.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : isom&#xA;    minor_version   : 512&#xA;    compatible_brands: isomiso2avc1mp41&#xA;    encoder         : Lavf58.29.100&#xA;  Duration: 00:01:00.00, start: 0.000998, bitrate: 2526 kb/s&#xA;    Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 2394 kb/s, 24 fps, 24 tbr, 16k tbn, 48 tbc (default)&#xA;    Metadata:&#xA;      handler_name    : VideoHandler&#xA;    Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 124 kb/s (default)&#xA;    Metadata:&#xA;      handler_name    : SoundHandler&#xA;At least one output file must be specified&#xA;

    &#xA;

    Thanks !

    &#xA;