
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (48)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Supporting all media types
13 avril 2011, parUnlike 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, parThe 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 (5754)
-
Revision 979ee6e4c9 : Free motion vector array before re-allocating Change-Id : I0c39136d67e1e83020d61
2 décembre 2014, par Adrian GrangeChanged Paths :
Modify /vp9/encoder/vp9_encoder.c
Free motion vector array before re-allocatingChange-Id : I0c39136d67e1e83020d61f86b062a04182ec9b00
-
Revision 23da920a8e : Fix the memory leak due to missing free frame_mvs. Change-Id : I2ceee7341d906259
3 novembre 2014, par hkuangChanged Paths :
Modify /vp9/common/vp9_alloccommon.c
Fix the memory leak due to missing free frame_mvs.Change-Id : I2ceee7341d906259002c0ea31ea009ae32c04bfd
-
avutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects
16 mai 2017, par Aaron Levinsonavutil/hwcontext_dxva2 : Don't improperly free IDirect3DSurface9 objects
Add dxva2_pool_release_dummy() and use it in call to
av_buffer_create() in dxva2_pool_alloc().Prior to this change, av_buffer_create() was called with NULL for the
third argument, which indicates that av_buffer_default_free() should
be used to free the buffer's data. Eventually, it gets to
buffer_pool_free() and calls buf->free() on a surface object (which is
av_buffer_default_free()).This can result in a crash when the debug version of the C-runtime is
used on Windows. While it doesn't appear to result in a crash when
the release version of the C-runtime is used on Windows, it likely
results in memory corruption, since av_free() is being called on
memory that was allocated using
IDirectXVideoAccelerationService::CreateSurface().Signed-off-by : Aaron Levinson <alevinsn@aracnet.com>
Reviewed-by : wm4 <nfxjfg@googlemail.com>
Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
Reviewed-by : Mark Thompson <sw@jkqxz.net>