Recherche avancée

Médias (91)

Autres articles (81)

  • 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 ;

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (13808)

  • Anomalie #2935 (Nouveau) : input readonly mal stylés

    29 janvier 2013, par charles razack

    Ligne 183, la feuille de style form.css.html définit une bordure pour les input appartenant à un fieldset : .formulaire_spip li fieldset input.text, .formulaire_spip li fieldset textarea.textarea border : 1px solid #AAAAAA ; Du coup, les input en ’readonly’ sont stylés de la même façon que les (...)

  • doc/default.css + doc/t2h.init : New styles

    24 septembre 2013, par Timothy Gu
    doc/default.css + doc/t2h.init : New styles
    

    The main motive of this commit is to make the offline copy of the HTML doc as
    pretty as the online (ffmpeg.org) one. This also introduced new styles for
    <h2> to <h4>.

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/default.css
    • [DH] doc/t2h.init
  • I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed

    20 avril 2013, par liaoyuandeyehuo

    I use this way to convert bitmap to yuv
    Save bitmap to video (libavcodec ffmpeg)
    and then save the buffer like this :

    FILE* fp=fopen("aha.yuv","w");
    if(!fp) return NULL;
    fwrite(outPic->data[0],nbytes,1,fp);
    fwrite(outBuffer,nbytes,1,fp);
    fclose(fp);

    but it has only several lines. All most all of the .yuv file is gray.
    I am sure the inbuffer points to the input BGR32 data. So where is wrong ?
    Is The way to save the outBuffer right ?