
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (43)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...) -
Contribute to translation
13 avril 2011You 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 (2879)
-
vp9 : use superframe split BSF
17 novembre 2017, par wm4vp9 : use superframe split BSF
webm usually has invisible superframes merged with normal frames.
(vpxenc muxes them in this form, which is evidence enough that this is
the standard webm packet format. It's rather unclear whether ffmpeg is
even allowed to remux them with split packets.)The vp9 decoder needs them to be in separate packets for multithreading
to work. Add the BSF to the decoder, so the conversion happens
automatically.This contains the important part of fa1749dd34c55fb9, which
was apparently skipped in commit d417e95af76. This restores Libav API
compatibility. -
FFMpeg installation in Ubuntu 12.04 and using it in PHP-FFMpeg
16 mai 2015, par SohelAhmedMI have tried many many failed attempt to install FFMpeg in my Ubuntu 12.04.
I used following links : 1, 2, 3 and many others.Then I need to use it in PHP-FFMpeg
And Then I need to deploy in Linux based server. This is my requirement.But after much trying, I just downloaded static build through this link.
This helped me to successfully convert video and use FFMpeg through terminal in Ubuntu. But I cannot use it through PHP-FFMpeg library which I need to run. In docs of PHP-FFMpeg it is written
This library requires a working FFMpeg install. You will need both
FFMpeg and FFProbe binaries to use it. Be sure that these binaries can
be located with system PATH to get the benefit of the binary
detection, otherwise you should have to explicitely give the binaries
path on load.and I am not getting this.
-
Révision 23870 : Si par un malheureux hasard, une table SQLite a sa clé primaire déclarée dans la ...
8 janvier 2018, par marcimat@rezo.netla primary est bien ajoutée dans le tableau des clés. Cependant, le create table que cela génère (avec sql_create(...)) (par exemple lors de la création du dump SQLite)
contient alors 2 instructions PRIMARY KEY (sur le champ, et dans la liste des clés), et SQLite refuse de créer la table dans ce cas.
On corrige dans sql_create, afin qu’il génère une requête de création correcte. Ce n’était que partielement pris en compte.