Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Supporting all media types

    13 avril 2011, par

    Unlike 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 (...)

Sur d’autres sites (5552)

  • Anomalie #4634 : Supprimer la classe .album ?

    8 février 2021

    Oui à priori pas besoin dans la dist.

    Mais je crois qu’au départ ça n’avait rien à voir avec le plugin, ça fait partie de Tiny typo : https://github.com/tetue/tinytypo/blob/master/css/media.css#L86-L102

  • Evolution #4658 (Nouveau) : Améliorer la classe .offscreen

    11 février 2021

    Bonjour,

    Ayant eu un cas où la classe n’avait pas caché complètement un border à un élément, j’ai cherché comment on faisait de manière moderne et accessible.

    Fichier à modifier : https://git.spip.net/spip/dist/src/branch/master/css/clear.css#L74

    Méthodes : https://webaim.org/techniques/css/invisiblecontent/#techniques

    Donc, il faudrait remplacer la méthode actuelle par :

    1. <span class="CodeRay"><span class="class">.offscreen</span> {
    2.     <span class="key">position</span>: <span class="value">absolute</span>;
    3.     <span class="key">left</span>: <span class="float">-10000px</span>;
    4.     <span class="key">top</span>: <span class="value">auto</span>;
    5.     <span class="key">width</span>: <span class="float">1px</span>;
    6.     <span class="key">height</span>: <span class="float">1px</span>;
    7.     <span class="key">overflow</span>: <span class="value">hidden</span>;
    8. }
    9. </span>

    Télécharger

    ou plus moderne :

    1. <span class="CodeRay"><span class="class">.offscreen</span> {
    2.     <span class="key">clip</span>: <span class="error">r</span><span class="error">e</span><span class="error">c</span><span class="error">t</span>(<span class="float">1px</span>, <span class="float">1px</span>, <span class="float">1px</span>, <span class="float">1px</span>);
    3.     <span class="key">clip-path</span>: <span class="error">i</span><span class="error">n</span><span class="error">s</span><span class="error">e</span><span class="error">t</span>(<span class="float">50%</span>);
    4.     <span class="key">height</span>: <span class="float">1px</span>;
    5.     <span class="key">width</span>: <span class="float">1px</span>;
    6.     <span class="key">margin</span>: <span class="float">-1px</span>;
    7.     <span class="key">overflow</span>: <span class="value">hidden</span>;
    8.     <span class="key">padding</span>: <span class="float">0</span>;
    9.     <span class="key">position</span>: <span class="value">absolute</span>;
    10. }
    11. </span>

    Télécharger

  • ffmpeg add scaled logo with two outputs

    24 février 2020, par yellowmn

    I want to add a scaled logo with 2 outputs.

    For 1 output this works for me :

    -filter_complex '[1:v]scale=156:94,overlay=main_w-overlay_w-10:10'

    But it does not work for 2 outputs in one ffmpeg command.