
Recherche avancée
Autres articles (57)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (10331)
-
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.