
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (78)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (...) -
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 (...)
Sur d’autres sites (6523)
-
can we set a bigger block size to the motion vector in ffmpeg
16 août 2022, par M.AkyuzluIn the FFmpeg v5.0 function
add_mb
at line 1562 inmpegvideo.c
file

static int add_mb(AVMotionVector *mb, uint32_t mb_type,
 int dst_x, int dst_y,
 int motion_x, int motion_y, int motion_scale,
 int direction)
{
 mb->w = IS_8X8(mb_type) || IS_8X16(mb_type) ? 8 : 16;
 mb->h = IS_8X8(mb_type) || IS_16X8(mb_type) ? 8 : 16;
 mb->motion_x = motion_x;
 mb->motion_y = motion_y;
 mb->motion_scale = motion_scale;
 mb->dst_x = dst_x;
 mb->dst_y = dst_y;
 mb->src_x = dst_x + motion_x / motion_scale;
 mb->src_y = dst_y + motion_y / motion_scale;
 mb->source = direction ? 1 : -1;
 mb->flags = 0; // XXX: does mb_type contain extra information that could be exported here?
 return 1;
} 



Depending on the MB_TYPE the block could take 8 or 16 pixels at one time so can we set the width and the height of the motion block to a bigger range in order to reduce the motion vector total length ?


that could hurt the quality of the image but I'm ok with that.


-
How to add padding on a video with text in foreground using ffmpeg
25 août 2016, par g13I want to add padding to video clip according to width and height of the text I input. The sentence should be able to break relative to video width automatically.
For padding I use :
ffmpeg -i d:\video.mp4 -vf pad=600:700:0:100:blue d:\videooutput.mp4
For text :
ffmpeg -i d:\videooutput.mp4 -vf "drawtext=fontfile=/windows/fonts/BebasNeue.otf:text='Sed felis eros, ornate ut cursus a, imperdiet sit amet purus.':fontsize=20:fontcolor=white:x=0:y=0" d:\videooutput2.mp4
How to do achieve this in a single command ?
The required result should be like this :
-
Revision 3239e22a42 : Conditionally use recursive transform block partition search If the frame heade
3 juin 2015, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Conditionally use recursive transform block partition searchIf the frame header sets to use fixed transform block size, use
the univariate transform block partition search flow.Change-Id : Ic422ecb6565642cd8ddb96dc67a37109ef3ce90f