
Recherche avancée
Autres articles (95)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (7131)
-
ffmpeg concatenate images in one image
26 juillet 2016, par drlexaI use this to get frames from video and concatenate them in one image :
ffmpeg -i output.mp4 -vf 'fps=2,tile=1000x1' out.jpg
But there is a problem : I do not know number of frames that will be fetched. Here I hardcoded tile size 1000x1, but if there will be more than 1000 frames, then will be an error. Before starting ffmpeg I do not know actual size of tile.
So I want use command like :
ffmpeg -i output.mp4 -vf 'fps=2,tile=*x1' out.jpg
That means : I want you to concatenate ALL images that will be fetched in one row, but I cannot use * as an argument for tile.
Is there some way to solve my problem ?
-
Concatenate images as well as crop video in single ffmpeg command
16 septembre 2022, par Loma HarshanaI have a set of images that I concatenate into a video using the following command (not sure of all the options just copied it from another answer) :


ffmpeg -framerate 24 -pattern_type glob -i "/path/to/input/????.png" \
-c:v libx264 -profile:v high -crf 20 -pix_fmt yuv420p "/path/to/output/output.mp4"



Now I want to crop this video to 500x500 size starting from 0,0, which I can do with the following :


ffmpeg -i "/path/to/input/input.mp4" -vf "crop=500:500:0:0" "/path/to/output/output.mp4"



How can I combine the above two operations in a single ffmpeg command.


-
FFMPEG merging sounds with amix cause volume problem [duplicate]
10 mars 2020, par birdcageI am trying to combine many sounds with
FFMPEG
amix
command and I need to set the starting moment of every sound. Every sound has different duration.When I use the command below, the volume of first and last item seems different in merged file. It seems the level of sound increases till the end of merged sound. I am wondering what I do wrong.
ffmpeg -i 1.wav -i 2.wav -i 3.wav -i 4.wav -filter_complex
"[0]adelay=1000|1000[a];
[1]adelay=30000|30000[b];
[2]adelay=50000|50000[c];
[3]adelay=200000|200000[d];
[a][b][c][d]amix=4"
/Users/username/Desktop/final.wav