
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (54)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Keeping control of your media in your hands
13 avril 2011, parThe 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 (...)
Sur d’autres sites (9672)
-
Evolution #4034 (Fermé) : Filtre ucfirst
28 septembre 2018, par cedric -A priori pas assez exhaustif pour mettre ça dans le core car il y a trop de cas particuliers dans les différents langages, et ça suppose aussi de gérer les cas où le texte commence par une balise html et pas un caractère… Donc un simple (#TEXTE ne marcherait pas :(
Et j’aurais tendance à me reposer sur le filtre majuscule du coup :
https://core.spip.net/projects/spip/repository/entry/spip/ecrire/inc/filtres.php#L1103Mais peut-être plus simplement faire ça en CSS
https://developer.mozilla.org/fr/docs/Web/CSS/::first-letterBref ça peut marcher en contexte de langue pas trop compliquée. A faire en plugin quelque part ?
Mais du coup je ferme pour le core -
import moviepy error issue with python3.9+ and matplotlib on latest MacOS M1
4 décembre 2022, par Arya KeniFor python 3.9+ there seems to be an error when I import moviepy after a pip install for moviepy with the correct command as per docs. I am trying an alternative to save animated plots from matplotlib from .gif format to .mp4 format, but matplotlib on MacOS (M1 chip) supports only .gif due to a lack of the "FFMpeg" process (which stays unresolved after pip installs as well). Any clue what to do here ?


Repeat :


For python 3.9+ there seems to be an error when I import moviepy after a pip install for moviepy with the correct command as per docs. I am trying an alternative to save animated plots from matplotlib from .gif format to .mp4 format, but matplotlib on MacOS (M1 chip) supports only .gif due to a lack of the "FFMpeg" process (which stays unresolved after pip installs as well). Any clue what to do here ?


-
avutil : add thread executor
29 août 2023, par Nuo Miavutil : add thread executor
The executor design pattern was introduced by java
<https://docs.oracle.com/en/java/javase/20/docs/api/java.base/java/util/concurrent/Executor.html> ;
it also adapted by python
<https://docs.python.org/3/library/concurrent.futures.html> ;
Compared to handcrafted thread pool management, it greatly simplifies the thread code.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>