Recherche avancée

Médias (91)

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • lavf/flvdec : Set avg_frame_rate for video streams.

    25 novembre 2016, par Carl Eugen Hoyos
    lavf/flvdec : Set avg_frame_rate for video streams.
    

    Requested-by : qw, applemax82 at 163 dot com
    Reviewed-by : Steven Liu

    • [DH] libavformat/flvdec.c
    • [DH] libavformat/version.h
  • libavformat/mov : add support for 'cens', 'cbc1' and 'cbcs' encryption schemes specifi...

    21 septembre 2021, par Nachiket Tarate
    libavformat/mov : add support for 'cens', 'cbc1' and 'cbcs' encryption schemes specified in Common Encryption (CENC) standard
    

    correct implementation of 'cenc' encryption scheme to support
    decryption of partial cipher blocks at the end of subsamples

    https://www.iso.org/standard/68042.html

    Signed-off-by : Nachiket Tarate <nachiket.programmer@gmail.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Can't overlay a WebM transpartent video on top of a MP4 using ffmpeg [closed]

    27 octobre 2020, par Hervé

    I have been struggling for hours trying to overlay a WebM transpartent video on top of a MP4 using ffmpeg. The two videos have the same duration. It should therefore be easy but I am getting desperate.

    &#xA;

    "c:\Program Files\ffmpeg\bin\ffmpeg.exe" ^&#xA;-i drone.mp4 ^&#xA;-i trans.webm -pix_fmt yuv444p  ^&#xA;-filter_complex "[1:v]format=rgba,colorchannelmixer=aa=0.5[trans];[0:v][trans]overlay=10:10" ^&#xA;out.mp4&#xA;

    &#xA;

    I tried MANY MANY different options, formats, but kept obtaining the same outcome : ffmpeg simply ignores the alpha channel of the trans.webm file and considers its background as black. I used the colorchannelmixer=aa=0.5 and the 10:10 offset to actually see the problem. My goal is really to keep the original subtle alpha channel of trans.webm, NOT to set the black color to transparent.

    &#xA;

    Some information about the two files :

    &#xA;

    drone.mp4

    &#xA;

        Metadata:&#xA;    creation_time   : 2020-10-27T10:18:38.000000Z&#xA;    handler_name    : VideoHandler&#xA;    encoder         : h264&#xA;    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 191 kb/s (default)&#xA;    Metadata:&#xA;    creation_time   : 2020-10-27T10:18:38.000000Z&#xA;    handler_name    : SoundHandler&#xA;

    &#xA;

    trans.webm

    &#xA;

        Input #0, matroska,webm, from &#x27;trans.webm&#x27;:&#xA;    Metadata:&#xA;    ENCODER         : Lavf58.51.100&#xA;    Duration: 00:00:27.00, start: 0.000000, bitrate: 28 kb/s&#xA;    Stream #0:0: Video: vp9 (Profile 0), yuv420p(tv), 1920x1080, SAR 1:1 DAR 16:9, 25 fps, 25 tbr, 1k tbn, 1k tbc (default)&#xA;    Metadata:&#xA;    alpha_mode      : 1&#xA;    ENCODER         : Lavc58.100.100 libvpx-vp9&#xA;    DURATION        : 00:00:27.000000000&#xA;

    &#xA;