
Recherche avancée
Autres articles (106)
-
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 (...) -
(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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (13663)
-
FFMpeg slide text from right to left an leave from left to right after x seconds
13 août 2018, par Marco van 't KloosterI’m trying to slide a text inside my video from right to left and leaving the video after 13 seconds.
The text has to stay there for 13 seconds and the leave in the opposite direction the video.Right now I’m using the following command :
ffmpeg -i Pool\ scores.m4v -vf "[in]drawtext=fontfile=/usr/share/fonts/truetype/msttcorefonts/Arial.ttf:fontsize=40:fontcolor=white:x=900:y=570:text='Marco':enable='between(t,11,24)' [out]" -c:v libx264 scrolling.m4v
So the text
Marco
have to be at x=900 and y=570. Thats also the coordinate where the text have to leave from.The idea is to create a pool score board where the video is auto generated with dynamic text. In this image there is an example of what the animation have to look like. I’ve to retime it tom match the same speed.
See exampleThanks in advance !!
-
Revision 8ba92a0bed : changes intra coding to be based on txfm block This commit changed the encoding
17 mai 2013, par Yaowu XuChanged Paths :
Modify /vp9/common/vp9_blockd.h
Modify /vp9/common/vp9_reconintra.c
Modify /vp9/common/vp9_reconintra.h
Modify /vp9/decoder/vp9_decodemv.c
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/decoder/vp9_onyxd_if.c
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encodeintra.h
Modify /vp9/encoder/vp9_encodemb.c
Modify /vp9/encoder/vp9_onyx_if.c
changes intra coding to be based on txfm blockThis commit changed the encoding and decoding of intra blocks to be
based on transform block. In each prediction block, the intra coding
iterates thorough each transform block based on raster scan order.This commit also fixed a bug in D135 prediction code.
TODO next :
The RD mode/txfm_size selection should take this into account when
computing RD values.Change-Id : I6d1be2faa4c4948a52e830b6a9a84a6b2b6850f6
-
ffmpeg : Text rendered in a box with alignment
15 novembre 2019, par HemanthI’m trying to render text onto a video, using the drawtext option. I would like it to appear in a box of a certain dimension (smaller than the video dimensions). For example, if the video is of size 480x360, I would like to render text in a box of 100x100.
I need this text to be justify aligned (both the left and right margins should be aligned).
Is there some option in ffmpeg to do this ? If not, is there some open source library that can achieve the same ?