Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (49)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (10708)

  • Which is a better expression for this if statement ?

    3 novembre 2012, par Philos

    I've been told of a patch for ffmpeg that fixes an issue when streaming to FLV players.

    Around line 2314 of rtmpproto.c there is the following expression :

    if (rt->flv_header_bytes < 11)
               break;

    The fix is to change it to include this additional requirement :

    if (rt->flv_header_bytes < 11 && !rt->flv_off)
               break;

    However I'm curious about the logic of this statement. The first statement checks to see if the FLV header is less than 11 bytes, but wouldn't it be more efficient to check to see if the flv stream is turned on first before it checks how many bytes big the header is ?

    if (!rt->flv_off && rt->flv_header_bytes < 11)
               break;

    Alternatively what about changing the statement to be like so ?

    if (rt->flv_off || (!rt->flv_off && rt->flv_header_bytes < 11)
                   break;

    Would that be more efficient or could it break the code somehow ?

  • Revision 7ebcaeb0fa : ads2gas.pl : convert push/pop and whole keywords. This change converts push to s

    9 novembre 2012, par Ahmad Sharif

    Changed Paths : Modify /build/make/ads2gas.pl ads2gas.pl : convert push/pop and whole keywords. This change converts push to stmdb and pop to ldmia. In addition word boundaries are obeyed using \b avoiding substituion where not appropriate. Patch provided by ihf@chromium.org. TEST=Used on many (...)

  • Revision 1e3dd49fe3 : Don't use hybrid transform (ADST) for superblocks. This is in line with other c

    13 novembre 2012, par Ronald S. Bultje

    Changed Paths : Modify /vp9/common/blockd.h Don't use hybrid transform (ADST) for superblocks. This is in line with other cases where we disable ADST if prediction size and transform size don't match. Before this patch, the RD loop will use ADST for superblocks, but frame (...)