
Recherche avancée
Autres articles (100)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (10867)
-
Revision 82028 : Correction de l’url de la librairie flot (Jean Marie Grall )
21 avril 2014, par eric@… — LogCorrection de l’url de la librairie flot (Jean Marie Grall )
-
Revision 82028 : Correction de l’url de la librairie flot (Jean Marie Grall )
21 avril 2014, par eric@… — LogCorrection de l’url de la librairie flot (Jean Marie Grall )
-
Access to motion vector's (x, y) coordinate while using libx264 encoder
8 mars 2022, par RocklandI want to know if it is possible to get motion vectors values (x, y) somehwhere in the enconding process while using libx264 encoder.


I have a project where I need to modify motion vectors values during encoding process.
What I want to do concretly is for exemple :
motion_x = motion_x + 1
and/ormotion_y = motion_y -1


I want to know if it is possible to get motion vectors values (x, y) somehwhere in the enconding process while using libx264 encoder.


I have a project where I need to modify motion vectors values during encoding process.
What I want to do concretly is for exemple :
motion_x = motion_x + 1
and/ormotion_y = motion_y -1


I know that it is possible to do that while using the standards ffmpeg encoders. Precisily in the function
static int encode_picture(MpegEncContext *s, int picture_number)
in the filempegvideo_enc.c
located in the ffmpeg's libavcodec directory, we can get and modify motion vector's values in the structMpegEncContext
(->current_picture.motion_val)
.
When I use libx264 encoder, this function is not called so I don't know where and how to do that.

Your help will be verry appreciated.