Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (84)

  • Participer à sa traduction

    10 avril 2011

    Vous 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, par

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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
    lavc/vaapi_encode : Enable block level bitrate control
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] doc/encoders.texi
    • [DH] libavcodec/vaapi_encode.c
    • [DH] libavcodec/vaapi_encode.h
  • 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 tuqueque

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

    &#xA;

    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 a YAVG parameter in the signalstats filter that returns the average luma level of the frame (https://ffmpeg.org/ffmpeg-filters.html#signalstats-1) . This is what I want to use to determine/calculate the gamma value to use in the eq filter gamma (https://ffmpeg.org/ffmpeg-filters.html#eq)… For example, in the end, I would like to use a formula like "1-(YAVG/50)&#x2B;1"

    &#xA;

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

    &#xA;

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

    &#xA;

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

    &#xA;

    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 :

    &#xA;

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

    &#xA;

        %{metadata:lavfi.signalstats.YAVG}&#xA;

    &#xA;

    Then, we run this command :

    &#xA;

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

    &#xA;

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

    &#xA;

    Using FFPLAY, I would imagine something like this :

    &#xA;

    ffplay VIDEO_INPUT -vf signalstats,eq=gamma="1-(metadata:lavfi.signalstats.YAVG/50)&#x2B;1":eval=frame&#xA;

    &#xA;

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

    &#xA;

  • avcodec/nvenc : add option to control subsampling of packed rgb input

    3 octobre 2023, par Timo Rothenpieler
    avcodec/nvenc : add option to control subsampling of packed rgb input
    
    • [DH] libavcodec/nvenc.c
    • [DH] libavcodec/nvenc.h
    • [DH] libavcodec/nvenc_av1.c
    • [DH] libavcodec/nvenc_h264.c
    • [DH] libavcodec/nvenc_hevc.c
    • [DH] libavcodec/version.h