
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (85)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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" (...)
Sur d’autres sites (11723)
-
Revision 2cf0d4be12 : WIP : 32x32 idct/recon merge This patch eliminates the intermediate diff buffer
14 mai 2013, par Scott LaVarnwayChanged Paths :
Modify /test/dct32x32_test.cc
Modify /vp9/common/vp9_idct.c
Modify /vp9/common/vp9_rtcd_defs.sh
Modify /vp9/common/x86/vp9_idct_intrin_sse2.c
Modify /vp9/decoder/vp9_idct_blk.c
Modify /vp9/decoder/x86/vp9_dequantize_sse2.c
Modify /vp9/encoder/vp9_encodemb.c
WIP : 32x32 idct/recon mergeThis patch eliminates the intermediate diff buffer usage by
combining the short idct and the add residual into one function.
The encoder can use the same code as well.Change-Id : I4ea09df0e162591e420d869b7431c2e7f89a8c1a
-
Revision a272ff25cd : WIP : 16x16 idct/recon merge This patch eliminates the intermediate diff buffer
15 mai 2013, par Scott LaVarnwayChanged Paths :
Modify /test/dct16x16_test.cc
Modify /vp9/common/vp9_idct.c
Modify /vp9/common/vp9_rtcd_defs.sh
Modify /vp9/common/x86/vp9_idct_intrin_sse2.c
Modify /vp9/decoder/vp9_idct_blk.c
Modify /vp9/decoder/x86/vp9_dequantize_sse2.c
Modify /vp9/encoder/vp9_encodemb.c
WIP : 16x16 idct/recon mergeThis patch eliminates the intermediate diff buffer usage by
combining the short idct and the add residual into one function.
The encoder can use the same code as well.Change-Id : Iea7976b22b1927d24b8004d2a3fddae7ecca3ba1
-
RTMP AVPacket from NAL Units iOS
5 novembre 2014, par Mihai GheteI’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.
What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.
I use this method to set the packet data : H264 Video Streaming over RTMP on iOS