
Recherche avancée
Autres articles (108)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (12243)
-
Split large amount of wav files to small parts
3 juillet 2017, par Tadeáš PešekI have large amount of wav files (over 50 000) and I need to split every wav file to 10 second long parts. It’s nearly impossible to do it one by one, so my question is : is there any way to do it in ffmpeg or for example in sox ? I’m an amateur, so I need exact instructions. Please, if you can, write it like you would for a dummy :)... (I’m a Windows 7 user)
Thank you !
-
How can I split an mp4 video with ffmpeg every time the volume is zero ?
14 mars 2019, par Juan Pablo FernandezI need to split a video into many smaller videos.
I have tried PySceneDetect and its 2 scene detection methods don’t fit my need.The idea is to trigger a scene cut/break every time the volume is very low, every time audio level is less than a given parameter. I think overall RMS dB volume level is what I mean.
The purpose is to split an mp4 video into many short videos, each smaller video with short dialog phrases.
So far I have a command to get the overall RMS audio volume level.
ffprobe -f lavfi -i amovie=01x01TheStrongestMan.mp4,astats=metadata=1:reset=1 -show_entries frame=pkt_pts_time:frame_tags=lavfi.astats.Overall.RMS_level,lavfi.astats.1.RMS_level,lavfi.astats.2.RMS_level -of csv=p=0
How can I get only the minimum values for RMS level and its corresponding frame or time ?
And then how can I use ffmpeg to split the video in many videos on every frame that corresponds to a minimum RMS ?
Thanks.
-
Ffmpeg- Split the video into 30 seconds chunks in android [duplicate]
23 novembre 2019, par Corgi MogiThis question is an exact duplicate of :
I am trying to split a video file into 30 second blocks.
I do not need to specify where the 30 seconds start or finish.
EXAMPLE- A single 45 second video will be split into VID1_part1 (30 seconds), VID1_part2 (15 seconds).Right now I am using the Ffmpeg command where I need to specify the starting and ending point.
String[] complexCommand = {"-ss", "" + startMs / 1000, "-y", "-i", yourRealPath, "-t", "" + (endMs - startMs) / 1000,"-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", filePath};
I also tried to add a for loop in order to repeat the process
int start, end;
for (int i = 0; i <= duration; i = i + 30) {
start = i;
end = start + 30;
String[] complexCommand = {"-ss", "" + start, "-y", "-i", yourRealPath, "-t", "" + end,"-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", filePath};
execFFmpegBinary(complexCommand);
}But didn’t workout
This works fine.
But I want the command through I can split a single video into 30 second chunks.
And should I use a single command for this purpose or a series of commands ?
Help is much appreciated