Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (55)

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (9018)

  • Revision eda179764f : Replace divide with look-up This commit replaces an integer divide with a table

    23 janvier 2015, par Yaowu Xu

    Changed Paths :
     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_entropymv.c


     Modify /vp9/common/vp9_prob.c


     Modify /vp9/common/vp9_prob.h



    Replace divide with look-up

    This commit replaces an integer divide with a table-lookup. It is
    to improve decoding speed, and at the same time, to reduce possible
    complications with a bug in AMD Family 12h processors :

    "665 Integer Divide Instruction May Cause Unpredictable Behavior"

    Change-Id : I678b707a538798a923850bac467e66e847e6def7

  • avformat/mov : update extensions

    27 janvier 2020, par Gyan Doshi
    avformat/mov : update extensions
    

    Added all extensions used by the mov muxer family, except m4v which
    is also used for raw MPEG-4 Part 2 bitstreams

    • [DH] libavformat/mov.c
  • Drawing text on video with avconv only at the start of the video

    21 juillet 2013, par Gael

    I want to embed the creation date of personnal videos, but only at their start (let say the 10 first seconds).

    I'm using the drawtext of avconv :

    avconv -i input.avi -vf
    "drawtext=fontcolor=white:fontsize=30:fontfile=/usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf:text='$date':x=30:y=h-text_h-30"
    test.mpg

    but I do not find any option to tell to just write the date on only a portion of the video. I could split the start of the video, or make an srt file, but there is probably an easier solution.