Recherche avancée

Médias (91)

Autres articles (58)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9478)

  • avcodec/vt : Don't restart decoder when confronted with ReferenceMissingErr

    18 mars, par Zhao Zhili
    avcodec/vt : Don't restart decoder when confronted with ReferenceMissingErr
    

    Otherwise the decoder may enter an loop of repeated state resets.
    This can happen for streams with CRA but no IDR.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/videotoolbox.c
  • Add multiple images to video fluent-ffmpeg

    14 mai 2022, par Riël

    I manage to add a single image to a video starting at a certain time and ending at a certain time, but I cannot find a way to do this for multiple images. I use fluent-ffmpeg.

    &#xA;&#xA;

    This is the code I have :

    &#xA;&#xA;

    ffmpeg(&#x27;../videos/testklein.mp4&#x27;)&#xA;     .input(&#x27;../src/test.png&#x27;)&#xA;     .input(&#x27;../src/0.png&#x27;)&#xA;     .input(&#x27;../src/1.png&#x27;)&#xA;     .addOptions([&#xA;        "-strict -2"&#xA;     ])&#xA;&#xA;     .complexFilter([&#xA;        {&#xA;          filter: &#x27;overlay&#x27;,&#xA;          options: {&#xA;            x: 200,&#xA;            y: 200,&#xA;            enable: &#x27;between(t,1,3)&#x27;,&#xA;&#xA;          }}, {&#xA;          filter: &#x27;overlay&#x27;,&#xA;          options: {&#xA;            x: 200,&#xA;            y: 200,&#xA;            enable: &#x27;between(t,3,5)&#x27;,&#xA;          }},&#xA;           {&#xA;          filter: &#x27;overlay&#x27;,&#xA;          options: {&#xA;             x: 200,&#xA;            y: 200,&#xA;            enable: &#x27;between(t,5,7)&#x27;,&#xA;          }&#xA;      },&#xA;&#xA;    ])&#xA;

    &#xA;&#xA;

    I suppose I need to explicitly state what filter should take what file, but I am not sure about the syntax for that.

    &#xA;

  • avcodec/libx264 : fix forced_idr logic

    12 octobre 2016, par Timo Rothenpieler
    avcodec/libx264 : fix forced_idr logic
    

    Currently, it forces IDR frames for both true and false.
    Not entirely sure what the original idea behind the tri-state bool
    option is.

    Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavcodec/libx264.c