Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 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 (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le 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 (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (10391)

  • avcodec/fits : Check bitpix

    5 mai 2019, par Michael Niedermayer
    avcodec/fits : Check bitpix
    

    Reference : Table 8 : Interpretation of valid BITPIX value from FITS standard 4.0
    Fixes : runtime error : division by zero
    Fixes : 14581/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FITS_fuzzer-5652382425284608

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

    • [DH] libavcodec/fits.c
  • Pipe opencv images to ffmpeg using python

    16 avril 2022, par jlarsch

    How can I pipe openCV images to ffmpeg (running ffmpeg as a subprocess) ?&#xA;(I am using spyder/anaconda)

    &#xA;&#xA;

    I am reading frames from a video file and do some processing on each frame.

    &#xA;&#xA;

    import cv2   &#xA;cap = cv2.VideoCapture(self.avi_path)&#xA;img = cap.read()&#xA;gray = cv2.cvtColor(img[1], cv2.COLOR_BGR2GRAY)&#xA;bgDiv=gray/vidMed #background division&#xA;

    &#xA;&#xA;

    then, to pipe the processed frame to ffmpeg, I found this command in a related question :

    &#xA;&#xA;

    sys.stdout.write( bgDiv.tostring() )&#xA;

    &#xA;&#xA;

    next, I am trying to run ffmpeg as a subprocess :

    &#xA;&#xA;

    cmd=&#x27;ffmpeg.exe -f rawvideo -pix_fmt gray -s 2048x2048 -r 30 -i - -an -f avi -r 30 foo.avi&#x27;&#xA;sp.call(cmd,shell=True)&#xA;

    &#xA;&#xA;

    (this also from the mentioned post)&#xA;However, this fills my IPython console with cryptic hieroglyphs and then crashes it. any advice ?

    &#xA;&#xA;

    ultimately, I would like to pipe out 4 streams and have ffmpeg encode those 4 streams in parallel.

    &#xA;

  • avformat/mp3dec : Check header_filesize

    11 juillet 2024, par Michael Niedermayer
    avformat/mp3dec : Check header_filesize
    

    Fixes : CID1608714 Division or modulo by float zero

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mp3dec.c