
Recherche avancée
Autres articles (56)
-
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 (10191)
-
avutil/frame : Port AVFrame.private_ref to RefStruct API
25 février, par Andreas Rheinhardtavutil/frame : Port AVFrame.private_ref to RefStruct API
This is possible without deprecation period, because said field
is documented as only for our libav* libraries and not the general
public.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by : James Almer <jamrial@gmail.com>- [DH] libavcodec/decode.c
- [DH] libavcodec/lcevcdec.c
- [DH] libavcodec/nvdec.c
- [DH] libavcodec/nvdec_av1.c
- [DH] libavcodec/nvdec_h264.c
- [DH] libavcodec/nvdec_hevc.c
- [DH] libavcodec/nvdec_mjpeg.c
- [DH] libavcodec/nvdec_mpeg12.c
- [DH] libavcodec/nvdec_mpeg4.c
- [DH] libavcodec/nvdec_vc1.c
- [DH] libavcodec/nvdec_vp8.c
- [DH] libavcodec/nvdec_vp9.c
- [DH] libavcodec/videotoolbox.c
- [DH] libavutil/frame.c
- [DH] libavutil/frame.h
-
avfilter/vf_libplacebo : flush render cache when input is invisible
7 août, par Niklas Haasavfilter/vf_libplacebo : flush render cache when input is invisible
This prevents leaking stale metadata from previous frames, for example if
an overlay temporarily obscures this input and then un-obscures it again. It
is worth pointing out that this does change the semantics subtly, because of
the smoothing period on detected HDR metadata, but I argue that the new
behavior is an improvement, as it will avoid leaking past metadata that is
definitely no longer relevant after an image is unobscured. -
avcodec : add avcodec_get_supported_config()
3 avril 2024, par Niklas Haasavcodec : add avcodec_get_supported_config()
This replaces the myriad of existing lists in AVCodec by a unified API
call, allowing us to (ultimately) trim down the sizeof(AVCodec) quite
substantially, while also making this more trivially extensible.In addition to the already covered lists, add two new entries for color
space and color range, mirroring the newly added negotiable fields in
libavfilter.Once the deprecation period passes for the existing public fields, the
rough plan is to move the commonly used fields (such as
pix_fmt/sample_fmt) into FFCodec, possibly as a union of audio and video
configuration types, and then implement the rarely used fields with
custom callbacks.