
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (84)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (15886)
-
lavc/vaapi_encode : Enable block level bitrate control
8 mars 2024, par Fei Wang -
Is it possible to use the signalstats YAVG filter in FFMPEG to control the gamma correction in a video ? [migrated]
27 décembre 2023, par tuquequeI don't know if this is even possible, but something tells me it is… You see, I want to dynamically control the gamma correction in FFMPEG/FFPLAY depending on how bright/dark the frame being reproduced in a video/movie is…


For context, there's a filter in FFMPEG/FFPLAY/FFPROBE called
signalstats
that reports various useful sets of info about the video being processed/reproduced/analized. There's aYAVG
parameter in thesignalstats
filter that returns the averageluma
level of the frame (https://ffmpeg.org/ffmpeg-filters.html#signalstats-1) . This is what I want to use to determine/calculate thegamma
value to use in the eq filtergamma
(https://ffmpeg.org/ffmpeg-filters.html#eq)… For example, in the end, I would like to use a formula like"1-(YAVG/50)+1"
…

With the
signalstats YAVG
filter/parameter I've managed to do these unrelated exercises :

Analyze (with FFPROBE) a video and write a log file with the
YAVG
value for each frame :

ffprobe -f lavfi movie=VIDEO_INPUT,signalstats -show_entries frame_tags=lavfi.signalstats.YAVG -of csv="p=0" > YAVG.log



I have been able to also play a video (with FFPLAY) and show in the upper-left corner the
YAVG
values for each frame being reproduced :

First, we need to create a text file in the home folder called in this case "
signalstat_drawtext.txt
" with the following content :

%{metadata:lavfi.signalstats.YAVG}



Then, we run this command :


ffplay VIDEO_INPUT -vf signalstats,drawtext=fontfile=FreeSerif.ttf:fontcolor=lime:textfile=signalstat_drawtext.txt



However, I haven't been able to find/guess how to use the
YAVG
output to control (in realtime) thegamma
value in theeq
filter… I think it's possible, I just don't know how to write the command.

Using FFPLAY, I would imagine something like this :


ffplay VIDEO_INPUT -vf signalstats,eq=gamma="1-(metadata:lavfi.signalstats.YAVG/50)+1":eval=frame



But of course, this doesn't work and I'm sure I'm just writing nonsense.


-
avcodec/nvenc : add option to control subsampling of packed rgb input
3 octobre 2023, par Timo Rothenpieler