
Recherche avancée
Médias (2)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (58)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (10263)
-
Revision 73edeb03ea : Removing alg_priv from vpx_codec_priv struct. In order to understand memory lay
21 août 2014, par Dmitry KovalevChanged Paths :
Modify /vp8/vp8_cx_iface.c
Modify /vp8/vp8_dx_iface.c
Modify /vp9/vp9_cx_iface.c
Modify /vp9/vp9_dx_iface.c
Modify /vpx/internal/vpx_codec_internal.h
Modify /vpx/src/vpx_codec.c
Modify /vpx/src/vpx_decoder.c
Modify /vpx/src/vpx_encoder.c
Removing alg_priv from vpx_codec_priv struct.In order to understand memory layout consider the declaration of the
following structs. The first one is a part of our API :struct vpx_codec_ctx
// ...
struct vpx_codec_priv *priv ;
;The second one is defined in vpx_codec_internal.h :
struct vpx_codec_priv
// ...
;The following struct is defined 4 times for encoder/decoder VP8/VP9 :
struct vpx_codec_alg_priv
struct vpx_codec_priv base ;
// ...
;Private data allocation for the given ctx :
struct vpx_codec_ctx *ctx =
struct vpx_codec_alg_priv *alg_priv =
ctx->priv = (struct vpx_codec_priv *)alg_priv ;The cast works because vpx_codec_alg_priv has a
vpx_codec_priv instance as a first member ’base’.Change-Id : I10d1afc8c9a7dfda50baade8c7b0296678bdb0d0
-
avcodec/jpeg2000 : Fixes integer overflow in ff_jpeg2000_ceildivpow2()
15 juin 2017, par Michael Niedermayeravcodec/jpeg2000 : Fixes integer overflow in ff_jpeg2000_ceildivpow2()
Fixes : runtime error : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
Fixes : 2231/clusterfuzz-testcase-minimized-4565181982048256Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/dts2pts_bsf : Eliminate some 64bit corner cases
21 novembre 2022, par Michael Niedermayeravcodec/dts2pts_bsf : Eliminate some 64bit corner cases
Fixes : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
Fixes : 53364/clusterfuzz-testcase-minimized-ffmpeg_BSF_DTS2PTS_fuzzer-4693772269387776Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>