Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (61)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7070)

  • doc/utils : fix atan2 parameter order

    14 janvier 2024, par Haixia Shi
    doc/utils : fix atan2 parameter order
    

    The C library function double atan2(double y, double x) takes y as the first
    parameter and x as the second parameter.

    Signed-off-by : Haixia Shi <hshi@meta.com>

    • [DH] doc/utils.texi
  • Evolution #4117 (Nouveau) : personnaliser méthode pour session_get

    23 mars 2018, par jluc -

    `session_get` est aux sessions ce que `lire_config` est aux meta

    `lire_config` est puissamment personnalisable et surchargeable puisqu’on peut notamment le « brancher sur des méthodes externes si besoin » (https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/config.php#L122) :

            if ($cfg and $p = strpos($cfg, ’: :’)) 
                    $methode = substr($cfg, 0, $p) ;
                    $lire_config = charger_fonction($methode, ’lire_config’) ;
                    return $lire_config(substr($cfg, $p + 2), $def, $unserialize) ;
            
    

    Serait il envisageable que session_get bénéficie de ces mêmes possibilités de personnalisation surchargeable ?

  • Why do file length appears to be longer after using ffmpeg convert HEIC to PNG ?

    15 octobre 2024, par BrinyFish

    I have been moving all my photos from iphone to my windows PC. Because I don't like to keep all the files in HEIC format, so I used ffmpeg to try to batch convert all the photos from HEIC to PNG.

    &#xA;

    Get-ChildItem *.heic | ForEach-Object {&#xA;    ffmpeg -i $_.FullName -map_metadata 0 -q:v 1 "$($_.BaseName).png"&#xA;}&#xA;

    &#xA;

    File size difference&#xA;After testing this chatGPT generated code on a small sample set of photos, I realize that the length of the PNG photos are smaller than the length of the HEIC photos. I have always believed that HEIC is the compressed format, which should be smaller. However, this size difference really makes me wonder if I am losing resultion or meta data. Do anyone know why would this be the case ?

    &#xA;

    I have googled and most articles are saying that HEIC should be smaller than PNG, which don't help me in this case.

    &#xA;