Advanced search

Medias (1)

Tag: - Tags -/artwork

Other articles (39)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 April 2011, by

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

On other websites (5013)

  • Take webcam picture with minimal delay [on hold]

    20 September 2017, by x-ray

    I would like to take a picture from a webcam and send that as an http server’s response. I know how to do the http server part, but I need a command that takes the picture and writes it to stdout. I tried this with ffmpeg:

    ffmpeg -f video4linux2 -video_size 1920x1080 -input_format yuyv422 -i /dev/video0 -f image2 -frames:v 1 -qscale:v 1 pipe:1

    This is working, the only drawback is that it takes about 3 seconds to get the picture. The delay comes from ffmpeg (not from the server/network), probably because it needs to wait for the webcam to initialize. I found that out by replacing pipe:1 with out.jpeg and running the ffmpeg command on the console.

    So now my idea is to have one ffmpeg process running all the time and stream the webcams raw video data somewhere, and then start a second ffmpeg process on each http request to get the current video frame as jpeg from that somewhere. However I do not know if it can work that way, and I do not know how to implement it. There might also be a better way for the whole task (send current picture from webcam on http request with minimal delay).

    Appreciate any help with this!

  • avcodec/h263dec: Sanity check against minimal I/P frame size

    14 August 2022, by Michael Niedermayer
    avcodec/h263dec: Sanity check against minimal I/P frame size
    

    Fixes: Timeout
    Fixes: 49718/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-4874987894341632

    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/h263dec.c
  • avcodec/ituh263dec: Check input for minimal frame size

    24 September 2019, by Michael Niedermayer
    avcodec/ituh263dec: Check input for minimal frame size
    

    Fixes: Timeout (28sec -> 3sec)
    Fixes: 17559/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H263_fuzzer-5681050776240128

    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/ituh263dec.c