Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (37)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (6011)

  • FFmpeg scale image do not use command way

    30 juin 2016, par zzq

    I want scale a image with ffmpeg, not the command way,

    so what is the steps ?

    I try use "libswscale/swscale.h"

    int sws_scale(struct SwsContext *c,const uint8_t *const     srcSlice[],const int    rcStride[],int  srcSliceY,int   srcSliceH,uint8_t *const    dst[],const int dstStride[] )

    but need get the image info, like width, height, formate etc ;

    how can I get these infomation and what next step do ?

  • Revision e931dac733 : Fix i4x4 mode reading and writing in sb8x8 bitstream. Don't allow i4x4 except f

    2 mai 2013, par Ronald S. Bultje

    Changed Paths :
     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c



    Fix i4x4 mode reading and writing in sb8x8 bitstream.

    Don't allow i4x4 except for sb8x8 recursion step. Read only 4 (not 16)
    i4x4 submodes if we are i4x4.

    Change-Id : Iaaaced1a134006b2c96eed66f014300eae41e0ed

  • Compression of a single RGB image ( with c++ )

    6 octobre 2015, par Amazonasmann

    I am currently streaming my OpenGL rendered images through a websocket. I use the ZLib compression to compress the RGB data on the server side. On the client side I simply decompress and show the images.

    My compression steps :

    1. S3TC Texture compression from OpenGL
    2. ZLib compression of step 1 with Qt framework

    How can I compress even further ? Is MPEG-4 encoding of a simple image an option or even possible ? How can I reduce the image size even further ?