Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14865)

  • 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;