Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (103)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 (20073)

  • dnxhddec : use dequantization formula from specs

    1er octobre 2015, par Christophe Gisquet
    dnxhddec : use dequantization formula from specs
    

    The current one, while correct, does not yield the best possible
    results. The specificiations suggest another formula, which results
    in quality gains in the decoded output from fate tests. This
    justifies changing said formula.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/dnxhddec.c
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-1080i
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-1080i-colr
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-720p
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-720p-10bit
    • [DH] tests/ref/vsynth/vsynth1-dnxhd-720p-rd
    • [DH] tests/ref/vsynth/vsynth2-dnxhd-1080i
    • [DH] tests/ref/vsynth/vsynth2-dnxhd-1080i-colr
    • [DH] tests/ref/vsynth/vsynth2-dnxhd-720p
    • [DH] tests/ref/vsynth/vsynth2-dnxhd-720p-10bit
    • [DH] tests/ref/vsynth/vsynth2-dnxhd-720p-rd
    • [DH] tests/ref/vsynth/vsynth3-dnxhd-1080i-colr
    • [DH] tests/ref/vsynth/vsynth_lena-dnxhd-1080i
    • [DH] tests/ref/vsynth/vsynth_lena-dnxhd-1080i-colr
    • [DH] tests/ref/vsynth/vsynth_lena-dnxhd-720p
    • [DH] tests/ref/vsynth/vsynth_lena-dnxhd-720p-10bit
    • [DH] tests/ref/vsynth/vsynth_lena-dnxhd-720p-rd
  • 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.

  • 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