Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (38)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6832)

  • Revision 89794 : Surcharger les autorisations du plugin medias Pourquoi ne peut on lier ...

    30 mai 2015, par kent1@… — Log

    Surcharger les autorisations du plugin medias
    Pourquoi ne peut on lier des docs à des docs ?
    http://zone.spip.org/trac/spip-zone/changeset/89155/_core_#file3
    Il y a des gens qui font cela depuis des années

  • Anomalie #4813 : Liens "(+) Plus d’info" et "(-) Moins d’info"

    7 juin 2021

    Pour l’instant le + et le moins c’est faute de mieux en attendant les icônes symboliques.
    Il faut imaginer que dans l’avenir ça sera remplacé par une icône caret ou autre, qui montrera proprement que le truc est dépliable.

    Les outlines servent uniquement pour l’accessibilité à la prise de focus. Si dans certaines situations ça fait pas très "joli", c’est pas bien grave, c’est pas le but premier. Là on est dans un groupe de boutons, seules les extrémités ont des arrondis.

    Nb : c’est exactement pareil que dans bootstrap, si tu met .btn-link au lieu de .btn-primary dans le 1er exemple, tu auras le même résultat : https://getbootstrap.com/docs/5.0/components/button-group/

  • ffmpeg : Variable based overlay

    25 juin 2018, par Hoofamon

    I am building a video from a collection of images, currently I am just using the ffmpeg command line tool for this :

    ffmpeg -framerate 60 -pattern_type glob -i "${photoDir}/archives/*.jpg" -c:v libx264 -pix_fmt yuv420p $movieDir/vidout.mp4

    I would like to overlay a string value on the video that would change for each input file image, it would be the name of that file with some slight changes. Is this something that is possible with the commandline utility and a script, or would I need to write a program using the ffmpeg lib ?

    Thank you