
Recherche avancée
Autres articles (101)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (10031)
-
avcodec/magicyuv : correct end of array check in multi VLC parsing
22 octobre 2023, par Michael Niedermayeravcodec/magicyuv : correct end of array check in multi VLC parsing
Fixes : out of array write
Fixes : 63390/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MAGICYUV_fuzzer-5144552979431424.fuzzFound-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
What's the proper way to use Docker multi-stage builds to copy a package installed with apt ?
25 décembre 2023, par Leo JiangI have
apt-get -y install ffmpeg --no-install-recommends
in my dockerfile and it's taking up more than half the image size (500MB). I read somewhere that I can try using Docker multi-stage build to reduce the file size.

Am I supposed to do something like :


FROM node:20.9.0-slim
RUN apt-get -y update \
 && apt-get -y install ffmpeg --no-install-recommends \
 && apt-get clean

FROM node:20.9.0-slim
COPY --from=0 /usr/bin/ffmpeg
COPY --from=0 /usr/bin/ffplay
COPY --from=0 /usr/share/ffmpeg/ffprobe.xsd
COPY --from=0 /usr/share/lintian/overrides/ffmpeg



I ran
dpkg -L ffmpeg
to see that ffmpeg has 30 files. Am I supposed to copy over all of the files or is just/usr/bin/ffmpeg
enough ? If I have to copy all of them, it seems like it'll break easily.

-
Introduce a elementValue method that normalizes only string values (don’t touch array value of multi-select). Fixes #116
2 avril 2012, par Max Lynchm jquery.validate.js Introduce a elementValue method that normalizes only string values (don’t touch array value of multi-select). Fixes #116