Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (50)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5490)

  • Evolution #4391 : Squelettes de la dist : améliorer le markup et passer à BEM

    24 octobre 2019

    Comme il y a passage de version 3.4, on peut se permettre de péter des choses, il me semble.
    Cela évitera d’alourdir le cahier des charges de la dist en maintenant un double code pour conserver la retro-compatibilité

    Mais en effet pour respecter les vieux sites, un peu à comme pour grenier, il faudrait proposer un plugin dist-vieille.

  • Revision 88543 : Refactoring de la fonction gravatar : au lieu des tests succesifs ...

    9 avril 2015, par cedric@… — Log

    Refactoring de la fonction gravatar : au lieu des tests succesifs encapsules difficiles a comprendre et maintenir, on fait une sequence de tests qui permettent tous de sortir si pas de mise a jour necessaire
    l’argument $default peut prendre aussi bien une valeur defaut de l’API gravatar qu’un chemin vers une image
    la balise #GRAVATAR peur prendre une valeur par defaut de l’API en 3e argument et pas seulement un chemin vers une image
    on propose la valeur "retro" par defaut en plus
    dans le formulaire de configuration on affiche les images d’exemple a la taille configuree, pour mieux se rendre compte

  • all pages of the same domain keep loading until background process finish [on hold]

    7 juillet 2013, par Kal

    I upload video files to mydomain_1.com and once the upload finish I store info about the uploaded file in mydomain_1 database under table process_queue.

    I have process.php under mydomain_2.com that connects to mydomain_1 database and check if process_queue table has any new entries. If there is then process.

    notice we are talking two separate domains.

    the moment process.php finds a new entry it starts converting the video using exec with ffmpeg.

    while the process is happening I cannot access any page under mydomain_1.com. all pages keep loading forever. the moment the process is done on mydomain_2.com I get access to pages on mydomain_1.com

    I thought it could be a mysql connection issue so on process.php I used mysql_close($db) immediately after every call to the database.