
Recherche avancée
Autres articles (105)
-
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" (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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
Sur d’autres sites (11353)
-
How to split video or audio by silent parts
18 mars 2016, par TermiTI need to automatically split video of a speech by words, so every word is a separate video file. Do you know any ways to do this ?
My plan was to detect silent parts and use them as words separators. But i didn’t find any tool to do this and looks like ffmpeg is not the right tool for that.
-
avfilter/af_acrossover : split in correct spot
29 novembre 2020, par Paul B Mahol -
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