Recherche avancée

Médias (91)

Autres articles (38)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (5760)

  • replaced av_dv_codec_profile by av_dv_codec_profile2 in encoder and dv muxers

    4 décembre 2014, par Steve Jiekak
    replaced av_dv_codec_profile by av_dv_codec_profile2 in encoder and dv muxers
    

    Signed-off-by : Steve Jiekak <devaureshy@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dvenc.c
    • [DH] libavformat/dv.c
    • [DH] libavformat/dvenc.c
  • avformat/sbgdec : Fixes integer overflow in str_to_time() with hours

    6 juin 2019, par Michael Niedermayer
    avformat/sbgdec : Fixes integer overflow in str_to_time() with hours
    

    Fixes : signed integer overflow : 904444 * 3600 cannot be represented in type 'int'
    Fixes : 15113/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5764083346833408

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/sbgdec.c
  • (no accepted answer) How to merge 2 overlapping videos into one video using ffmpeg or opencv ?

    3 janvier 2021, par Muhammad Umer

    Merging two videos is easy, been answered couple of times. What I have is multiple overlapping videos. A video might have overlaps with video before it. Meaning if video 1 covers 1-5 timeline then video 2 may overlap 1, and cover 3 to 8. Merging them as is would result in 1-5|3-8, when i need 1-8 only.

    &#xA;&#xA;

    Videos are alphabetically sorted.

    &#xA;&#xA;

    My general idea of solution is...

    &#xA;&#xA;

      &#xA;
    • grab last frame of the video
    • &#xA;

    • if it's first video continue
    • &#xA;

    • if it's not first video, ie. 2nd, search for frame saved in previous steps frame by frame
    • &#xA;

    • if it reaches to last frame of current video then there is no overlap continue
    • &#xA;

    • if it founds a frame then clip 2nd video up to that frame inclusive and then go to next frame
    • &#xA;

    • once all videos have been analyzed, merge them into one video.
    • &#xA;

    &#xA;&#xA;

    I need to translate this to ffmpeg commands. Or opencv if that's a better tool.

    &#xA;&#xA;

    If there is better way of doing that, I'm interested in that too.

    &#xA;