
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (45)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7170)
-
FFmpeg video from image plus audio length issue
1er juin, par blackbraynI'm having issues regarding the output video length when using the following code which seems to work for everybody else.


On a input mp3 of 04:56 I get a 05:09, the last part is only the image, no sound, for a longer mp3 input file I get more silent video at the end.


I'm using the "-shortest" option just before the output file as an argument , as suggested in other threads around stackoverflow/superuser.


ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -shortest out.mp4



I already changed the input file type - wav , and the image - png, jpg, same silent "overhead" at the end of the video.


-
ffmpeg - Add image, crop it and move it smoothly 50px to the top
6 octobre 2020, par Oleksii ZakharukI need the ffmpeg command to :
1)make video from video.mp4
2)insert image.jpg to the center of the video between 2 and 7 seconds
3)make that image round
4)Between 7 and 10 sec smoothly move it 50 px to the top


I really appreciate your help


-
How to rescale image based on long side with ffmpeg ?
10 février 2024, par mj2I want to rescale an image based on the long side of the image.


If I have a landscape format image e.g. 4000x3000px then this is the right command :


ffmpeg -i input.jpg -vf scale=1500:-1 scaled.jpg


If I have an upright format image e.g. 3000x4000px then this is the right command :


ffmpeg -i input.jpg -vf scale=-1:1500 scaled.jpg


Can I do this in one command ? Another option is to check the format manually with ffmpeg but I don't know how.