
Recherche avancée
Médias (3)
-
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
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (95)
-
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 (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (7928)
-
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> -
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> -
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