Recherche avancée

Médias (91)

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • How to loop audio in ffmpeg till concatenated video length

    5 août 2020, par IDimension

    Here is my current code, but it cut shorts the concatenated video till audio length.

    


    ffmpeg -i 'vid1.mp4' -i 'vid2.mp4' -i 'vid3.mp4' -i 'audio1.mp3' -filter_complex [0:v][1:v][2:v]concat=n=3:v=1:a=0[v] -map [v] -map 3:a -pix_fmt yuv420p -vcodec libx264 -shortest -y output.mp4

    


  • avformat/matroskadec : Make reading zero-length elements spec-compliant

    16 février 2021, par Andreas Rheinhardt
    avformat/matroskadec : Make reading zero-length elements spec-compliant
    

    For a very long time, the payload of integer and float elements had to
    have a length > 0. Our parser treated such invalid elements as having a
    value zero. But now it has been defined what an EBML element with length
    zero means : It is a shorthand for the default value. This has also been
    defined for strings (both ASCII and UTF-8). This commit modifies our
    parser to support this.

    Reviewed-by : Ridley Combs <rcombs@rcombs.me>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskadec.c
  • avfilter/vf_zscale : Don't make assumptions about zimg's range enums

    17 septembre 2021, par Andreas Rheinhardt
    avfilter/vf_zscale : Don't make assumptions about zimg's range enums
    

    zimg's color range enum values are off-by-one compared to ours ;
    therefore the code just adds one when converting from theirs to ours.
    Yet this is not how one should deal with enums ; use a switch instead.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/vf_zscale.c