
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (70)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...)
Sur d’autres sites (10767)
-
Revision 35fadf1d25 : bilinearpredict_neon : fix type conversion warnings make bifilter4_coeff[][] uin
11 juillet 2014, par James ZernChanged Paths :
Modify /vp8/common/arm/neon/bilinearpredict_neon.c
bilinearpredict_neon : fix type conversion warningsmake bifilter4_coeff[][] uint8_t, no values exceed this range and
they’re loaded with vdup_n_u8().Change-Id : I921983e9edd828d29820e40ac30a7801dbe0fb4f
-
vp8 : change mv_{min,max}.{x,y} type to int
8 juin 2015, par Andreas Cadhalpunvp8 : change mv_min,max.x,y type to int
If one of the dimensions is larger than 8176, s->mb_width or
s->mb_height is larger than 511, leading to an int16_t overflow of
s->mv_max.x,y. This then causes av_clip to be called with amin > amax.Changing the type to int avoids the overflow and has no negative
effect, because s->mv_max is only used in clamp_mv for clipping.
Since mv_max.x,y is positive and mv_min.x,y negative, av_clip can’t
increase the absolute value. The input to av_clip is an int16_t, and
thus the output fits into int16_t as well.For additional safety, s->mv_min,max.x,y are clipped to int16_t range
before use.Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
GStreamer force decodebin2 output type
6 septembre 2014, par user975326I’m trying to write a program in C which replicates the pipeline :
gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink
DecodeBin2 has a dynamic pad and I’ve attached a callback to handle its creation. I am unable to link it to ffmpegcolorspace however because the pad capability is always video/quicktime. I would like it to be video/x-raw-yuv or something else which is compatible with ffmpegcolorspace.
Is this possible to force/select the output type of decodebin2 ?
Thanks.
EDIT : Please do not recommend playbin. I’m trying to learn how how to make pipelines.