Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (78)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8314)

  • mpeg12dec : Extract CC user data into frame side data

    26 novembre 2013, par John Stebbins
    mpeg12dec : Extract CC user data into frame side data
    

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DH] doc/APIchanges
    • [DH] libavcodec/mpeg12dec.c
    • [DH] libavutil/frame.h
    • [DH] libavutil/version.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;