
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (42)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
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 -
Supporting all media types
13 avril 2011, parUnlike 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 (...)
Sur d’autres sites (8741)
-
Anomalie #3234 : Upload gros fichiers : detecter dans le verifier() du formulaire upload
11 juin 2015, par Eric CamusPour le point 2 : http://php.net/manual/fr/language.types.string.php#language.types.string.conversion
Une chaine dans une opération arithmétique est forcément converti en nombre.
C’est d’ailleurs un truc et astuce que j’utilise pour extraire seulement un nombre d’une input : $x=0+$_REQUEST[’in’] ; donnera toujours un chiffre (entier ou float !).
Donc pas besoin d’extraire la lettre, à la rigueur changer le return $val ; en return (0+$val) ; en cas de lettre non comprise. -
avfilter/vf_huesaturation : Remove dead store
18 novembre 2021, par Andreas Rheinhardt -
FFMPEG : Can I store a specific color component in a separate video stream ?
31 mai 2021, par jiandingzheI want to store video with alpha channel, but most video encodings (like H.264, MPEG2) do not support alpha channel. As most muxer formats support multiple streams, I'm wondering if I could encode YUV components in a video stream, and alpha component in a second stream ?


Note : though there are some video encodings that support alpha channel (such as VP9), I still want to try this approach as a last resort.