
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (53)
-
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (8663)
-
Docs : Fixed a critical typo in the workarounds for modals
22 juillet 2014, par JamesMGreeneDocs : Fixed a critical typo in the workarounds for modals
Ref #159.
Ref #179. -
udp : Fix pkt_size management
29 mars 2015, par Luca Barbato -
Does the compiler take care the useless codes like if(0) ?
25 juillet 2015, par xkfz007Recently, I am compiling the ffmpeg codes under windows use the VS2010 with intel compiler.
For the following codes :void ff_dcadsp_init(DCADSPContext *s)
{
s->lfe_fir = dca_lfe_fir_c;
if (ARCH_ARM) ff_dcadsp_init_arm(s);
}the macro
ARCH_ARM
is defined as0
.When I compile it under linux, there is no function in
ff_dcadsp_init_arm()
in the object file, while it does under windows ? So I want to make sure if the compiler will do something about the useless codes and how to set it for INTEL compiler.