
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (55)
-
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. -
(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 ;
Sur d’autres sites (7665)
-
ffmpeg frame-accurate cutting
24 septembre 2018, par jvecseiI’ve been trying for some time to achieve frame-accurate cuts with ffmpeg.
Since I don’t want to do a complete re-encoding, my idea was to do a re-encoding only at the intersections. This works fine, but it seems like the sound will become more and more asynchronous over time (at the end 0.5s).
The command for the intersection point is from the "real" start to the next keyframe :
ffmpeg -ss 468.24 -to 474.680000 -i input.avi -c:a mp3 -c:v h264 -avoid_negative_ts make_zero -pix_fmt yuv420p -r 25 input.avi_0.tmp.start.avi
The command for what comes next is from the keyframe to the next cut :
ffmpeg -ss 479.720000 -t 2039.320000 -i input.avi -c copy -avoid_negative_ts make_zero -pix_fmt yuv420p input.avi_0.tmp.avi
I do this multiple times and fhe file names of the results will be written to concat.txt
Then i merge the files with :
ffmpeg -f concat -fflags +genpts -async 1 -i input.avi_concat.txt -c copy -pix_fmt yuv420p -y input.cut.avi
Does anyone have any idea what else I can try ? I tried async/vsync but unfortunately without any great result. Before executing the concat command the files are all fine...
-
swscale/swscale_unscaled : make the fast planar copy path work with more formats
15 mars, par James Almerswscale/swscale_unscaled : make the fast planar copy path work with more formats
dst_depth - src_depth where the result is 6 or 7 in a high bd path means this
is only executed for 16 -> 10 and 16 -> 9.
This patch makes this path general, supporting arbitrary formats as long as
dst_depth > src_depth > 8.Signed-off-by : James Almer <jamrial@gmail.com>
-
Burning subtitles into video with ffmpeg with specific margin not working
17 mai 2024, par AnthonyI am trying to build a tool where people can position their subtitles on an HTML5 video and then I will burn the subtitles into the video for them.


I can easily get the position of the subtitles, in whatever format I need, that's easy. However, no combination of values that I feed to ffmpeg are working.


My holy grail is an x and y offest (aka offset 5% from the left, 10% from the bottom, in terms of video height/width).


To achieve this, I would like the subtitles to start in the very bottom-left corner.


ffmpeg -y -i english.mp4 -vf "subtitles=english.srt:force_style='Alignment=1,OutlineColour=&H100000000,BorderStyle=3,Outline=1,Shadow=0,FontName=Arial,FontSize=24,MarginL=140,MarginV=0'" -c:v libx264 -crf 23 -c:a copy output_video.mp4



Here is something that is approaching working, but it's behaving very strangely. The video is 850x480 but when I do a margin of 140 it goes way past the midway point of the video.


Am I missing something ? How can I start the margin in the bottom left, and then apply the margin I want to push it away from the left and away from the bottom ? I can do it either as a percentage of the video height/width if that API is supported or just pixels is fine too (but clearly doesn't seem to be working)