
Recherche avancée
Autres articles (41)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 ;
-
Installation en mode standalone
4 février 2011, parL’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
[mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)
Sur d’autres sites (7273)
-
Revision 05ec800ea4 : Use boolcoder API instead of inlining This patch changes the token packing to c
16 novembre 2012, par John KoleszarChanged Paths : Modify /vp9/decoder/vp9_detokenize.c Modify /vp9/encoder/vp9_bitstream.c Use boolcoder API instead of inlining This patch changes the token packing to call the bool encoder API rather than inlining it into the token packing function, and similarly removes a special get_signed case (...)
-
Revision 3606b78108 : Modified test for auto key frame detection. The existing test was triggering a
16 avril 2015, par paulwilkinsChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
Modified test for auto key frame detection.The existing test was triggering a lot of false positives on some types
of animated material with very plain backgrounds. These were triggering
code designed to catch key frames in letter box format clips.This patch tightens up the criteria and imposes a minimum requirement
on the % blocks coded intra in the first pass and the ratio between the
% coded intra and the modified inter % after discounting neutral (flat)
blocks that are coded equally well either way.On a particular problem animation clip this change eliminated a large
number of false positives including some cases where the old code
selected kf several times in a row. Marginal false negatives are less
damaging typically to compression and in the problem clip there are now
a couple of cases where "visual" scene cuts are ignored because of well
correlated content across the scene cut.Replaced some magic numbers related to this with #defines and added
explanatory comments.Change-Id : Ia3d304ac60eb7e4323e3817eaf83b4752cd63ecf
-
ffmpeg apply command on every mp4 file in folder
16 avril 2016, par user2602925I have the command
for file in *.mp4; do ffmpeg -i "${file%.mp4} -vf fps=1/60 img%03d.jpg; done
Which I want to use in ffmpeg to iterate over every mp4 file in a directory and run the
ffmpeg -i myvideo.mp4 -vf fps=1/60 img%03d.jpg
command on. However when I run the above for loop, I get the error "File was unexpected at this time." How can I fix this ?I should also mention that the file names have spaces and other special characters in them.