
Advanced search
Other articles (39)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 September 2013, byCertains 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, byMediaSPIP 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, byPar 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 (5047)
-
Android Create MP4 with bitmap series and mp3 by FFmpeg (i need minimal ffmpeg config for build)
29 September 2017, by grizzlyi’m building ffmpeg for android. my target is only create mp4 video with series of bitmap image and merge mp3 audio. i want use ffmpeg only only for this target. So i need optimized config for this target. i try find in google and find not bad config list. but i need full optimize config for reduce size of ffmpeg in android app. can you suggest me best config for this target?
i find this:
Minimal configuration for mp4 files
how do i modify this ffmpeg build script for minimal binary size output
but is not complete optimized.
please suggest me full optimize config for my target. thanks
-
Take webcam picture with minimal delay [on hold]
20 September 2017, by x-rayI 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
without.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 Niedermayeravcodec/h263dec: Sanity check against minimal I/P frame size
Fixes: Timeout
Fixes: 49718/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-4874987894341632Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>