
Recherche avancée
Autres articles (85)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (7647)
-
Revision 5811d7e865 : Simplification of decoder's code. Removing several commented code blocks, using
5 avril 2013, par Dmitry KovalevChanged Paths : Modify /vp9/decoder/vp9_decodframe.c Simplification of decoder's code. Removing several commented code blocks, using uint32_t and uint8_t types, removing redundant code. Change-Id : Ifc5cc9863897925ea2a7cab4f7309ccf28d80bfe
-
Revision 2c93a8ed5c : Give VP9 a different sync code from VP8 The new code is 0x49, 0x83, 0x42 There
19 mai 2013, par Jingning HanChanged Paths :
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/vp9_dx_iface.c
Give VP9 a different sync code from VP8The new code is 0x49, 0x83, 0x42
There is nothing particularly special about this code bitstream wise.
Its derivation is the word "sync" coded using 4x6bit alphabetic indices.Change-Id : Ie2430a854af32ddc5a5c25a6c1c90cf6497ba647
-
Why do I get a black box when I tile pictures with -filter_complex tile=2x1 in FFmpeg ?
19 juin 2016, par Mateusz PiotrowskiAs I was trying to write a script (which attempts to join two pictures eventually) using FFmpeg I came across a very weird behaviour.
I’ve found a command in an accepted answer for the very same problem I had (How to join two image into one by ffmpeg ?) :
ffmpeg -i a.jpg -i b.jpg -filter_complex scale=120:-1,tile=2x1 output.jpg
What happened to the B cat ? Why is it missing from the output image ? I couldn’t find any information why
tile=2x1
behaves like this.