
Recherche avancée
Autres articles (58)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (5863)
-
Revision 516d0b1180 : Set up early RD cost check for NEWMV in non-RD mode decision flow This commit e
4 avril 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_pickmode.c
Set up early RD cost check for NEWMV in non-RD mode decision flowThis commit estimates the motion vector rate cost right after full
pixel motion search. It combines this and the mode cost and compares
the corresponding rate-distortion cost. If it is already above the
current best one, skip the rest sub-pixel motion search and modeling
process. For pedestrian_area 1080p at 4000 kpbs, the speed -5 runtime
goes down from 39425 ms -> 38399 ms.Change-Id : If4cd7119fd6c266798d5cf1d19d19ab425e52a26
-
Revision d36852b702 : Add encoding option —static-thresh This option exists in VP8, and it was rewri
11 juillet 2013, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_rdopt.c
Add encoding option —static-threshThis option exists in VP8, and it was rewritten in VP9 to support
skipping on different partition levels. After prediction is done,
we can check if the residuals in the partition block will be all
quantized to 0. If this is true, the skip flag is set, and only
prediction data are needed in reconstruction. Based on DCT's energy
conservation property, the skipping check can be estimated in
spatial domain.The prediction error is calculated and compared to a threshold.
The threshold is determined by the dequant values, and also
adjusted by partition sizes. To be precise, the DC and AC parts
for Y, U, and V planes are checked to decide skipping or not.Test showed that
1. derf set :
when static-thresh = 1, psnr loss is 0.666% ;
when static-thresh = 500, psnr loss is 1.162% ;
2. stdhd set :
when static-thresh = 1, psnr loss is 1.249% ;
when static-thresh = 500, psnr loss is 1.668% ;For different clips, encoding speedup range is between several
percentage and 20+% when static-thresh <= 500. For example,
clip bitrate static-thresh psnr time
akiyo(cif) 500 0 48.923 5.635s(50f)
akiyo 500 500 48.863 4.402s(50f)parkjoy(1080p) 4000 0 30.380 77.54s(30f)
parkjoy 4000 500 30.384 69.59s(30f)sunflower(1080p) 4000 0 44.461 85.2s(30f)
sunflower 4000 500 44.418 78.1s(30f)Higher static-thresh values give larger speedup with larger
quality loss.Change-Id : I857031ceb466ff314ab580ac5ec5d18542203c53
-
Revision 52256cdbca : Modify static threshold calculation Used 3 * standard_deviation in internal thr
26 juillet 2013, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Modify static threshold calculationUsed 3 * standard_deviation in internal threshold calculation
instead of fit curve. This actually approached the algorithm
better.
For comparison, similar tests were done :
The overall psnr loss is less than before.
1. derf set :
when static-thresh = 1, psnr loss is 0.329% ;
when static-thresh = 500, psnr loss is 0.970% ;
2. stdhd set :
when static-thresh = 1, psnr loss is 0.922% ;
when static-thresh = 500, psnr loss is 1.307% ;Similar speedup is achieved. For example,
clip bitrate static-thresh psnr time
akiyo(cif) 500 0 48.952 5.077s(50f)
akiyo 500 500 48.866 4.169s(50f)parkjoy(1080p) 4000 0 30.388 78.20s(30f)
parkjoy 4000 500 30.367 70.85s(30f)sunflower(1080p) 4000 0 44.402 74.55s(30f)
sunflower 4000 500 44.414 68.69s(30f)Change-Id : Ic78833642ce1911dbbd1cb6c899a2d7e2dfcc1f3