
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (106)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (11512)
-
Add raw VC-1 muxer to match demuxer.
9 décembre 2012, par Reimar DöffingerAdd raw VC-1 muxer to match demuxer.
-
Revision 9a5e0d4038 : Match improved vp9/10 style in libs.mk Change-Id : I5402c4e4a7d028f4865f429ec5ac
1er septembre 2015, par JohannChanged Paths :
Modify /libs.mk
Match improved vp9/10 style in libs.mkChange-Id : I5402c4e4a7d028f4865f429ec5ac6cb592aa2dcb
-
Batch script to match two filenames in the same folder with different extension
24 mai 2018, par AhhhhhhhhhhhhhdfgbvI’ve been looking, but I don’t quite understand the regex of matching filenames. I have seen in SO that there are questions that match two filenames in different folders, but I’m looking within the same folder.
file01.jpg
file01.wav
file02.jpg
file03.jpg
file04.jpg
file04.wavI want it to match if there is a
jpg
and awav
to run a ffmpeg script, and if thewav
doesn’t have a matchingjpg
then run another ffmpeg script, and if there is no matchingwav
to thejpg
do another script.if( $jpg == $wav ) // matching filenames without extension
do script1
else if( $jpg != $wav ) // if there is no matching jpg to wav
if( empty($jpg) && $wav )
do script2
if( empty($wav) && $jpg )
do script3