
Recherche avancée
Autres articles (38)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (6832)
-
How can I justify text using FFMPEG [closed]
18 mai 2021, par Rahul ChokshiHow can align text left and right like below example ?


Hello FFMPEG
 Hello FFMPEG 
Hello FFMPEG 
 
Hello FFMPEG 
 Hello FFMPEG 
 Hello FFMPEG 
 

 Hello FFMPEG 
 Hello FFMPEG 



I did tried below example, but it didn't work


ffmpeg -i input.mp4 -vf "[in]drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='Hello World Ffmpeg':x=(w)/2:y=(h)/2, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hello':x=(w)/2:y=((h)/2)+25, drawtext=fontsize=20:fontcolor=Black:fontfile='roboto.ttf':text='hel':x=(w)/2:y=((h)/2)+50[out]" -y test_out.mp4



-
panning and zooming multiple images with ffmpeg
16 mars 2017, par user1796752I have multiple images that I want to fade and zoompan for each image but when I do what others have said, the first image works perfect and the second is black. I want to have 25 images and the same thing occurs with every image black except the first one. I am sure I am missing something elementary. Please help.
ffmpeg -r .1 -i image_1.jpg -i image_2.jpg -vf "zoompan=z='min(zoom+0.0015,1.5)':d=125,fade=t=in:st=0:d=0.5,fade=t=out:st=4.5:d=0.5" -pix_fmt yuv420p output.mp4
-
FFMPEG : Converting WAV to MP4 with filter loops forever
30 juin 2021, par David FerrisI'm using the following basic
ffmpeg
commend to convert a WAV file to an MP4.

ffmpeg -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4


This is great, however I'd like to include a black background on the mp4 file, and as it stands this doesn't add ANY background (see below).




I have tried to include the following filter to add this background, which works, however it loops forever, and when I stop it manually I get a file which is hours long with the first 20 seconds or so being my original audio.


ffmpeg -f lavfi -i color=c=black:s=1280x720:r=5 -i response.wav -s 1980x1080 -c:a aac -b:a 128k aNewVideo.mp4


How can I add this black background without running into this infinite loop problem ?