
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (112)
-
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 (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
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 (...)
Sur d’autres sites (13003)
-
Split videos into segments using ffmpeg
21 janvier 2019, par RJFFI have 10000 videos and I want to split each video into five segments
I know previously how to segment video using ffmpeg but I do not know how to use it with a large number of videos
the names of videos are :
1.avi,
2.avi,
3.avi,
.......
.....,
10000.aviI want to use for loop with ffmpeg
can you please help me ?!!!! -
Ffmpeg Split lost one second
4 décembre 2012, par Ahmet KaI got a problem with ffmpeg video cutting. Videos not cut properly. 1 second between the first and second video is lost.
part1.avi split code :ffmpeg -i input.avi -ss 00:00:00 -t 00:01:00 -vcodec copy -acodec copy part1.avi
part2.avi split code
ffmpeg -i input.avi -ss 00:01:00 -t 00:01:00 -vcodec copy -acodec copy part2.avi
ffmpeg -i part1.avi = 00:01:00.02
ffmpeg -i part2.avi = 00:01:00.02 -
Split a wav file into multiple overlapping .wav files using ffmpeg
5 juillet 2018, par Neeraj SharmaI need to split big .wav files into small chunks of the same interval.
This can be done using this command :ffmpeg -i input.wav -f segment -segment_time 59 -c copy parts/out%09d.wav
but the requirement is some overlap. I am using these chunks for transcription and overlap will help in joining the chunked transcription results. Is there a way to get the overlapped audio chunks ?