
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (83)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)
Sur d’autres sites (13386)
-
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>
-
avfilter/asrc_anoisesrc : change color variable to int
26 octobre 2019, par Limin Wangavfilter/asrc_anoisesrc : change color variable to int
Or it'll cause invalid color and s->filter is NULL.
Please reproduce it with below command on big endian system :
$ ./ffmpeg -f lavfi -i "anoisesrc=d=60:c=1:r=48000" -f s16le -c:a pcm_s16le -f
null -
Segmentation fault (core dumped)Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avutil/tile : check clock_gettime at runtime for apple platforms
9 janvier 2017, par Wang Binavutil/tile : check clock_gettime at runtime for apple platforms
clock_gettime is avalible since macOS 10.12 and iOS 10.0. Because of
weak linking, clock_gettime can be build without error with new
macOS/iOS sdk, but the symbol may not exist on the target system.
Explicitly checking the symbol is required.
https://developer.apple.com/library/content/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WeakLinking.htmlSigned-off-by : Wang Bin <wbsecg1@gmail.com>
Signed-off-by : Steven Liu <lq@chinaffmpeg.org>