
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (6)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (2461)
-
avcodec/lpc : Avoid floating point division by 0
28 mai 2021, par Michael Niedermayer -
4 ways to create more effective funnels
24 février 2020, par Jake Thornton — Uncategorized -
FFMpeg SDR and HDR side-by-side video encoding
21 septembre 2023, par Famro FexlI am attempting to create a side-by-side video with FFMpeg using the hstack filter.


The SDR video is formatted as "AVC 8-bit YUV420p BT709 Gamma 2.4" and the HDR video is formatted as "HEVC 10-bit YUV420p10le BT2020 SMPTE2084 (with HDR10 metadata)".


In order for the gamma and color space to match, I tried to convert the SDR video to an HDR format using filtering.


Basically, I attempted to process the Rec.709 gamma 2.4 SDR content to Rec.2020 SMPTE2084 content so it could be combined and displayed in the same video. I'm not sure if the input pixel format mattered, at it appeared to be automatically transformed into the output pixel format. From everything I know, this should be theoretically possible.


Here is my FFMpeg command for converting the SDR video into HDR :

ffmpeg -i input.mkv -filter_complex "colormatrix=bt709:bt2020" -color_primaries bt2020 -color_trc smpte2084 -c:v libx265 out.mkv


The colorspace filter always returned the error
[Parsed Colorspace_0 @ addr] Unsupported input primaries 2 (unknown)
, when using the filter_complex `colorspace=all=bt2020", so I was never able to use it.

The HDR result had over-saturated reds in the color space and it was too dim in the gamma. I tried every gamma option available, but none of them matched the original SDR content.`