
Recherche avancée
Autres articles (107)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (9304)
-
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 Resize Video 720:1280 Bigger Height, Width and Crop To 1280:720 using ffmpeg ?
31 juillet 2021, par ChhengRavyI have video Original size 720:1280 and want to convert it to size 1280:720 but before converting I want to increase it bigger first.




Using Code Below, I can resize the video to 1280:720 but it is not the result that I want.


ffmpeg -i input.mp4 -filter_complex scale=1280:720:force_original_aspect_ratio=decrease,pad=1280:720:-1:-1:color=black output.mp4





This is what I want to get. Please Help Me To solve the problem. Your answer is so important to me.
Thank you so much. I am waiting your reply.




-
avformat/wavdec : Refuse to read chunks bigger than the filesize in w64_read_header()
17 octobre 2020, par Michael Niedermayeravformat/wavdec : Refuse to read chunks bigger than the filesize in w64_read_header()
Fixes : OOM
Fixes : 26414/clusterfuzz-testcase-minimized-ffmpeg_dem_FWSE_fuzzer-5070632544632832
Fixes : 26475/clusterfuzz-testcase-minimized-ffmpeg_dem_W64_fuzzer-5770207722995712Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>