
Recherche avancée
Médias (1)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (69)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (11763)
-
avcodec/x86/h264_idct : Fix incorrect xmm spilling on win64
24 mars 2024, par Henrik Gramner -
Convert SDR-JPEG to HDR-AVIF [closed]
27 avril 2024, par Jonas JanzenI would like to convert a jpg file into an avif file that is to be saved in HDR10-capable metadata (PQ curve, 2020 color space, 10 bit).


The idea is to save normal SDR images in HDR-capable containers so that they can be displayed in all their glory on HDR-capable displays.


I want to play with inverse tone mapping, to manipulate the output, so I implemented in Python via subprocess.


So far I just want the input image to be saved in AVIF as HDR and look the same at the end as before, so that I can then make changes in the next step.


I used the following command for this :


ffmpeg_command = [
'ffmpeg',


Input File
'-i', temp_file,


Used Library
'-c', 'libaom-av1',


'-still-picture', '1',


Output Metadata
'-pix_fmt', 'yuv420p10le',
'-strict', 'experimental',
'-color_primaries', 'bt2020',
'-color_trc', 'smpte2084',
'-colorspace', 'bt2020nc',
'-color_range', 'pc',


Output File
output_file
]


So far my attempts have only been successful with the HLG characteristic. Here you can see that the images are really brighter in the peaks on my HDR monitor.


With the PQ characteristic curve, the images are far too oversaturated.


I guess this is because the HLG curve is compatible with the gamma curve, but PQ is not.


Now my question is what I need to change.


Which curve does FFMpeg expect as input.


In Python I can change the images mathematically without any problems.


The Example Images are again tone mapped down to jpg, to show what happened.


enter image description here
enter image description here


-
Revert "avcodec : Rename ff_kbd_window_init() as it will be needed from outside libavc...
28 janvier 2024, par Andreas RheinhardtRevert "avcodec : Rename ff_kbd_window_init() as it will be needed from outside libavcodec"
This reverts commits fd5aa93a37b3fa21195c6d7b22ef655124020e09
and cf00f60bab1f79213c274a6cd4357b32bd5c0101
("avcodec/kbdwin : Support arbitrary sized windows").The change in question has only been made for libavradio.
in anticipation of merging it into the main tree. This has
not happened, so this commit reverts the changes to kbdwin
that are not used for anything else. In particular, these
functions are no longer exported (as avpriv functions) ;
notice that the fixed-point function has been exported
despite having never been used outside of lavc.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>