
Recherche avancée
Autres articles (107)
-
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. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10480)
-
Revision 43be86dbff : vp10 : remove double MV value check. This has virtually no effect on coding effi
8 septembre 2015, par Ronald S. BultjeChanged Paths :
Modify /vp10/common/mvref_common.c
Modify /vp10/common/mvref_common.h
vp10 : remove double MV value check.This has virtually no effect on coding efficiency, but it is more
logical from a theoretical perspective (since it makes no sense to
me that you would exclude a MV from a list just because it’s sign-
inversed value is identical to a value already in a list), and it
also makes the code simpler (it removes a duplicate value check in
cases where signbias is equal between the two MVs being compared).See issue 662.
Change-Id : I23e607c6de150b9f11d1372fb2868b813c322d37
-
libavformat/mov : Elimitate double reading of COVR metadata if MOV_EXPORT_ALL_METADATA...
14 mai 2014, par Alex Sukhanovlibavformat/mov : Elimitate double reading of COVR metadata if MOV_EXPORT_ALL_METADATA is enabled
Problem : ffmpeg tries to read COVR atom data twice if MOV_EXPORT_ALL_METADATA is enabled.
If COVR atom is the last in the stream, a parsing of such file fails.Solution : just return immediatelly after mov_read_covr
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
Fix double write of DASH manifest in streaming mode
24 juin 2021, par Kevin LaFlammeFix double write of DASH manifest in streaming mode
When streaming mode is enabled, the DASH manifest is written on the
first packet for the segment so that the segment can be advertised
immediately to clients. It was also still writing the manifest at the
end of the segment leading to two duplicate writes.