Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (65)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (12883)

  • Introduce a elementValue method that normalizes only string values (don’t touch array value of multi-select). Fixes #116

    2 avril 2012, par Max Lynch

    m jquery.validate.js Introduce a elementValue method that normalizes only string values (don’t touch array value of multi-select). Fixes #116

  • What's the proper way to use Docker multi-stage builds to copy a package installed with apt ?

    25 décembre 2023, par Leo Jiang

    I 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.

    


  • avcodec/magicyuv : correct end of array check in multi VLC parsing

    22 octobre 2023, par Michael Niedermayer
    avcodec/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.fuzz

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/magicyuv.c