
Recherche avancée
Autres articles (104)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (11831)
-
lavfi/colorlevels : Add slice threading support
21 mai 2019, par Jun Zhaolavfi/colorlevels : Add slice threading support
Add slice threading support, use the command like :
./ffmpeg -i input -vf colorlevels -f null /dev/null
with 1080p h264 clip, the fps from 39 fps to 79 fps
in the local(Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz)Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Jun Zhao <barryjzhao@tencent.com> -
lavfi/lut : Add slice threading support
21 mai 2019, par Jun Zhaolavfi/lut : Add slice threading support
Used the command for 1080p h264 clip as follow :
a). ffmpeg -i input -vf lutyuv="u=128:v=128" -f null /dev/null
b). ffmpeg -i input -vf lutrgb="g=0:b=0" -f null /dev/nullafter enabled the slice threading, the fps change from :
a). 144fps to 258fps (lutyuv)
b). 94fps to 153fps (lutrgb)in Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Jun Zhao <barryjzhao@tencent.com> -
avfilter/vf_unsharp : enable slice threading
7 mai 2019, par Ruiling Songavfilter/vf_unsharp : enable slice threading
benchmarking with a simple command :
ffmpeg -i 1080p.mp4 -vf unsharp=la=3:ca=3 -an -f null /dev/null
with the patch, the fps increase from 50 to 120 on my local machine (i7-6770HQ).Signed-off-by : Ruiling Song <ruiling.song@intel.com>