
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (40)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)
Sur d’autres sites (3807)
-
Revision 79afb5eb41 : Use lrand48 on Android When building x86 assembly use lrand48 instead of the un
13 juin 2014, par JohannChanged Paths :
Modify /vp8/common/x86/postproc_mmx.asm
Modify /vp8/common/x86/postproc_sse2.asm
Delete /vp8/common/x86/postproc_x86.c
Modify /vp8/vp8_common.mk
Modify /vp9/common/x86/vp9_postproc_mmx.asm
Modify /vp9/common/x86/vp9_postproc_sse2.asm
Modify /vpx_ports/x86_abi_support.asm
Use lrand48 on AndroidWhen building x86 assembly use lrand48 instead of the
undocumented inlined _rand function.Android now supports rand()
https://android-review.googlesource.com/97731
but only for new versions. Original workaround :
https://gerrit.chromium.org/gerrit/15744Change-Id : I130566837d5bfc9e54187ebe9807350d1a7dab2a
-
Revision 0639b5cff5 : Speed 2 alternative balance. A previous path improved speed 2 quality a little
28 mars 2014, par Paul WilkinsChanged Paths :
Modify /vp9/encoder/vp9_speed_features.c
Speed 2 alternative balance.A previous path improved speed 2 quality a little but
more extensive testing showed that it slowed encode
by a few %.The change will have a similar effect for speed 3 but
should not impact speeds 4+ ;This experiment should reverse that and give a speed
up at the cost of a small quality loss.Borg results pending.
Change-Id : I4493fc1541aaf44587f1a41ff219f7088da9252c
-
How to wrap an h.264 file as mp4 on iOS
27 octobre 2016, par buildsucceededI have a bare h.264 file (from a raspberry pi camera), and I’d like to wrap it as an mp4. I don’t need to play it, edit it, add or remove anything, or access the pixels.
Lots of people have asked about compiling ffmpeg for iOS, or streaming live data. But given the lack of easy translation between the ffmpeg command line and its iOS build, it’s very difficult for me to figure out how to implement this simple command :
ffmpeg -i input.h264 -vcodec copy out.mp4
I don’t specifically care whether this happens via ffmpeg, avconv, or AVFoundation (or something else). It just seems like it should be not-this-hard to do on a device.