
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (102)
-
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 -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (9056)
-
fate/source-check.sh : Use "git show" instead of git —version to test for git
15 février 2016, par Michael Niedermayer -
FFMPEG : Position images in video when creating slide show
29 décembre 2015, par JimmyI’m using FFMPEG shell utility in an Android app to convert users pictures to video, here’s an example command :
cat *.jpg | ffmpeg -f image2pipe -r 10 -vcodec mjpeg -i - -vcodec libx264 -s 1280x720 -preset ultrafast slideshow.mp4
I used to crop images when the user import it in the app but now I would like to allow the user to reposition the image later, here’s an example :
So the user could drag or zoom the image to position it in the clear area (video ratio).
So using the ffmpeg shell command can I specify the image coordinate for each image and position the image in the video.
-
FFMPEG show an Image with specific duration in filter_complex chain
26 juin 2021, par DigerkamI have trouble with showing images with a specific duration in filter_complex.


I have to use filter_complex, and getting error : "No such filter : 'duration'"


So which filter do I need to use ?


ffmpeg \
 -i "music.mp3" \
 -i "01.mp4" \
 -i "02.jpg" \
 -i "03.mp4" \
 -i "04.jpg" \
 -i "05.mp4" \
 -filter_complex " \
 [1:v]scale=300:400,trim=0:2,setpts=PTS-STARTPTS[v1]; \
 // Correct filter needed here: \
 [2:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v2]; \
 [3:v]scale=300:400,trim=4:6,setpts=PTS-STARTPTS[v3]; \
 // And here:
 [4:v]scale=300:400,duration=2,setpts=PTS-STARTPTS[v4]; \
 [5:v]scale=300:400,trim=8:10,setpts=PTS-STARTPTS[v5]; \
 [v1][v2][v3][v4][v5]concat=n=5:v=1:a=0[out] \
 " \
 -map "[out]" -map "0:a" -t "12" -c:v "libx264" -pix_fmt "yuv420p" -s "300x400" output.mp4