
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7373)
-
Audio in ffmpeg
1er octobre 2020, par Konduri Sai AdityaI need to add audio as an input to below command, How can I achieve it


ffmpeg -i test.png -i test.mp4 -y -filter_complex "[1:v]scale=1422:800[scale1],[scale1]rotate=0:c=black@0:ow=rotw(0):oh=roth(0)[rotate0],[0:v][rotate0]overlay=258.04:107.71[mediaoverlayout0],color=black@0:451x137[c1],[c1]setsar=1,drawtext=fontfile='/Windows/fonts/Peddana-Regular.ttf':text='ADITYA':fontsize=121.19999999999999:fontcolor=#1e8bc3:line_spacing=16.91,rotate=0:ow=rotw(0):oh=roth(0):c=black@0[rottext1],[mediaoverlayout0][rottext1]overlay=x=544.63:y=263.076:shortest=1" -pix_fmt yuv420p op.mp4



-
How to Create videos from txt with ffmpeg ?
27 avril 2016, par thora.grahamI want to create a list of videos from txt files.
I find a code on stackoverflowffmpeg -f lavfi -i color=c=blue:s=1024x768:d=150 -vf "drawtext=fontfile='C\:\\Windows\\Fonts\\arial.ttf':fontsize=45: fontcolor=white:x=(w-text_w)/2:y=(h-text_h)/2:textfile=1.txt" output.mp4
But its only can create 1 video at a time with the same duration.
Is it possible to create several videos at a time ?
Anyone could help me to create bat file which could create videos from the txt file(1 txt to 1 video), and also each video have the different length(randomly from 180s to 240s)..
I create a folder named txt, which have 1.txt 2.txt. 3.txt, the save the videos to a folder named video, and the videos name will be 1.mp4 2.mp4 3.mp4
Thanks...
-
ffmpeg how to make moving text smooth ?
27 mars 2019, par RecessiveI have the following command for creating scrolling text from a text file :
ffmpeg -i vid.mp4 -vf "[in]drawtext=fontfile=C\\:/Windows/Fonts/arial.ttf:fontsize=25:fontcolor=black:x=30:y=h-n*5:textfile='credits.txt'[out]" -c:v libx264 -max_muxing_queue_size 1024 scrolling.mp4
This will slowly move the text found in
credits.txt
upwards, but does so discretely every second, rather then smoothly over time. The section that controls this is they=h-n*5
, wheren
is the frame number I believe, which I thought would be updated every frame, but appears it behaves exactly the same as if I were to replace it witht
.If anyone knows of any way of smoothly moving text using ffmepg, or any other method at all such as image magick, that would be greatly appreciated.