
Recherche avancée
Autres articles (57)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9870)
-
Is it possible to capture images like time lapse using AFORGE FFMPEG ?
4 juillet 2022, par jom12I am trying to make a time lapse video using AFORGE FFMPEG.


I want to capture a video frame every 10 units.


VideoFileReader reader = new VideoFileReader();
 reader.Open(@"\drive.mp4");
 for (long i = 0; i < reader.FrameCount; i++)
 {
 if (i % 10 == 0)
 {
 Bitmap videoFrame = reader.ReadVideoFrame();
 videoFrame.Save(@"test\img_" + (i / 10).ToString() + ".jpg", System.Drawing.Imaging.ImageFormat.Jpeg);
 }
 }



However, this code only saved 1 frame as an image instead of 10 frames.


Is there a better way to capture images 10 frames at a time ?


-
Concatenate two audios with different duration time
18 septembre 2022, par Prinple VrloI need to concatenate two audios, but I need to keep the size of the video with the size of the audio "backgroud.wav". I'm doing like this :


$code1 = "ffmpeg -y -i voz.wav -i backround.wav -filter_complex amerge -c:a libmp3lame -q:a 4 somnovo2.mp3";


system($code1);



But the result is the size of the audio "voz.wav" which would be 30 seconds. While "background.wav" is 3 minutes long. I need the output to have the time of "background.wav". How can I do this ?


-
How to divide a time duration in half
30 août 2019, par Kelly FletI’m trying to find the midpoint of a video, in other words divide the total length by
2
.ffmpeg
gives time in formatHOURS:MM:SS.MICROSECONDS
, so ignoring microseconds, how could I get the half way point ? I’ve tried dividing each number (hours/minutes/seconds
) by2
but this fails in the case of0:01:00
, for example.