
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (8266)
-
avformat/vividas : simplify, use av_rescale_q() instead
28 avril 2020, par Limin Wangavformat/vividas : simplify, use av_rescale_q() instead
note it'll cause a small difference in accuracy for the pts, please see the testing result below :
$ wget http://samples.ffmpeg.org/archive/all/unknown+unknown+unknown+unknown+5029_paramount_en_1250.viv
$ ./ffmpeg -t 0.04 -i ./unknown+unknown+unknown+unknown+5029_paramount_en_1250.viv -f null -
old :
pts : 522
pts : 1044
pts : 1567
pts : 3918
pts : 8097
pts : 12277
pts : 16457
...new :
pts : 522
pts : 1045
pts : 1567
pts : 3918
pts : 8098
pts : 12278
pts : 16457
...Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
fftools/ffplay : fix rotation incorrect when frame contains the displaymatrix
5 septembre 2022, par Wang Yaqiangfftools/ffplay : fix rotation incorrect when frame contains the displaymatrix
For example, if the jpeg contains exif information
and the rotation direction is included in the exif,
the displaymatrix will be set on the side_data of the frame when decoding.
However, when ffplay is used to play the image,
only the side data in the stream will be determined.
It does not check whether the frame also contains rotation information,
causing it to play in the wrong directionReviewed-by : Zhao Zhili <zhilizhao@tencent.com>
Signed-off-by : Wang Yaqiang <wangyaqiang03@kuaishou.com> -
avcodec/libzvbi-teletextdec : replace data_size with got_sub_ptr for better readability
24 mars 2020, par Limin Wang