
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (58)
-
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
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 -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9478)
-
libavcodec/xsubenc.c : Fix bounding box coordinates
7 novembre 2013, par Erik Olofssonlibavcodec/xsubenc.c : Fix bounding box coordinates
Fix coordinates of the lower right corner of the text area.
Note that the coordinates are redundant as the size and
position of the text area are known.
Many decoders (including Sony Playstation 3, VLC and FFmpeg)
ignore the redundant coordinates.
Some hardware decoders need them for correct playback.Verified on Philips DVD player models HTS7201 and DVP3380.
Fixes ticket #3031
Signed-off-by : Erik Olofsson <eaj.olofsson@gmail.com>
Reviewed-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
How do video encoding standards(like h.264) then serialize motion prediction ?
12 août 2019, par NephilimMotion prediction brute force algorithms, in a nutshell work like this(if I'm not mistaken) :



- 

- Search every possible macroblock in the search window
- Compare each of them with the reference macroblock
- Take the one that is the most similar and encode the DIFFERENCE between the frames instead of the actual frame.









Now this in theory makes sense to me. But when it gets to the actual serializing I'm lost. We've found the most similar block. We know where it is, and from that we can calculate the distance vector of it. Let's say it's about 64 pixels to the right.



Basically, when serializing this block, we do :



- 

- Ignore everything but luminosity(encode only Y, i think i saw this somewhere ?), take note of the difference between it and the reference block
- Encode the motion, a distance vector
- Encode the MSE, so we can reconstruct it









Is the output of this a simple 2D array of luminosity values, with an appended/prepended MSE value and distance vector ? Where is the compression in this ? We got to take out the UV component ? There seem to be many resources that take on the surface level of video encoders, but it's very hard to find actual in-depth explanations of modern video encoders. Feel free to correct me on my above statements.


-
avcodec/pngdec : support decoding sRGB chunks
17 janvier 2023, par Leo Izenavcodec/pngdec : support decoding sRGB chunks
If an sRGB chunk is present in the PNG file, this commit will cause the
png decoder to ignore the cHRM and gAMA chunks and tag the resulting AVFrames
with BT.709 primaries, and ISO/IEC 61966-2-1 transfer. If these tags are
present in the AVFrame, pngenc.c already writes this chunk, so no change was
needed on the encode-side.The PNG spec does not define what happens if sRGB and iCCP are present at
the same time, it just recommends that this not happen. As of this patch,
the decoder will have the ICC profile take precedence, and it will not tag
the pixel data as sRGB.Signed-off-by : Leo Izen <leo.izen@gmail.com>