Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (56)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6565)

  • ffmpeg neighbor resize giving distortion when resizing video game footage. 2x2 pixels converted to 3x3 don't hold their color and are pixelated

    12 avril 2020, par PixelFrustated

    Here is my ffmpeg code :

    



    ffmpeg -i C :\FFMPEG\bin\input.mp4 -vf "scale=-2:1080" -sws_flags neighbor -c:v libx264 -crf 0 -preset Slow -c:a copy -b:a 320k C :\FFMPEG\bin\VIDEO2_1080p.mp4

    



    I'm converting a 720p video to 1080p. The game is 2x2 pixels and when I do the conversion they should be flat 3x3 pixels but instead they come out with slight miscolors on the insides between the pixels and their color is slightly off.

    



    Can anyone help me figure out why this warped ?

    



    Pixels on the left are 2x2 and are converted to the pixels on the right.

    



    Instead of 2x2 expanding out to a 3x3 it takes a weird blend going vertical but the horizontal pixels are just fine.

    


  • Revision 78002 : Mise a jour de la librairie OpenID : https://github.com/openid/php-openid ...

    6 novembre 2013, par cedric@… — Log

    Mise a jour de la librairie OpenID :
    https://github.com/openid/php-openid n’a plus de tag depuis la version 2.2.2 qui date de 4 ans, mais le master contient un certain nombre de bugfixes (notamment les passages par reference qui font une erreur 500 en PHP 5.4). On retient le master revision ee669c6 et on la stocke sur http://contrib.spip.net/IMG/zip/openid-php-openid-master-ee669c6.zip

  • Anomalie #4355 (Nouveau) : critère {0,n} et variable

    21 juin 2019, par Fabrice Véronneau

    Salut,

    Pour rejoindre en partie le ticket https://core.spip.net/issues/4209 je pose le problème rencontré :

    Une boucle ayant comme critère

    <span class="CodeRay">{0,#ENV{max,n}}</span>

    ne fonctionne pas. Elle sort en équivalence SQL

    <span class="CodeRay">LIMIT <span class="integer">0</span>,<span class="integer">0</span></span>

    donc 0 résultat, alors que si l’on met en dur :

    <span class="CodeRay">{0,n}</span>

    cela affiche tous les résultats. Cela force à mettre un nombre max acceptable du type :

    <span class="CodeRay">{0,#ENV{max,9999}}</span>