Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • avformat/avio : Don't include common.h

    30 juillet 2021, par Andreas Rheinhardt
    avformat/avio : Don't include common.h
    

    Reviewed-by : Martin Storsjö <martin@martin.st>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/avio.h
  • avformat/avidec : don't save a copy of the packet's AVBufferRef on DV streams

    2 mai 2021, par James Almer
    avformat/avidec : don't save a copy of the packet's AVBufferRef on DV streams
    

    It's no longer needed.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/avidec.c
  • ffmpeg save difference between 2 videos to file

    10 août 2020, par 0x-1

    I'm currently trying to learn everything related to videos and encountered a problem that I need help with.

    &#xA;

    The Question is : How can I save the difference between 2 videos to a seperate file with ffmpeg ?
    &#xA;For example here is the ffplay command I'm trying with :&#xA;(Source : https://superuser.com/questions/854543/how-to-compare-the-difference-between-2-videos-color-in-ffmpeg)

    &#xA;

    ffplay -f lavfi "movie=left.mp4,setpts=PTS-STARTPTS,split=3[a0][a1][a2];&#xA;            movie=right.mp4,setpts=PTS-STARTPTS,split[b0][b1];&#xA;            [a0][b0]blend=c0_mode=difference[y];&#xA;            [a1]lutyuv=y=val:u=128:v=128[uv];&#xA;            [y][uv]mergeplanes=0x001112:yuv420p,pad=2*iw:ih:0:0[down];&#xA;            [a2][b1]hstack[up];[up][down]vstack"&#xA;

    &#xA;

    In this case I would want to have the bottom left video saved to a new file.
    &#xA;Can someone help me get together the right ffmpeg filter and explain the proccessing of ffmpeg ?

    &#xA;