Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (53)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    Ce 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, par

    The 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 JamesMGreene
    Docs : Fixed a critical typo in the workarounds for modals
    

    Ref #159.
    Ref #179.

  • udp : Fix pkt_size management

    29 mars 2015, par Luca Barbato
    udp : Fix pkt_size management
    

    The default value for unset is -1, not 0.

    Problem introduced in 66028b7ba6b411ba12ef553e9c8f1f4a4fe27710

    Bug-Id : 835

    • [DH] libavformat/udp.c
  • Does the compiler take care the useless codes like if(0) ?

    25 juillet 2015, par xkfz007

    Recently, 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 as 0.

    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.