
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (58)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (7507)
-
how to cut the last 2 minutes of the videos in bulk using ffmpeg
8 mai 2020, par jose antonio da silva juniorhow to cut the last 2 minutes of the videos in bulk using ffmpeg I'm using this but I must do this in bulk but the time of the videos is not the same



for %%a in ("*.mp4") do ffmpeg -i "%%a" -i overlay-black.png -filter_complex overlay=0:600 -ss 00:00:05 -codec:a copy "convertidos\%% na.mp4" 
pause


-
How to split multiple videos 2.24 seconds before the end
15 décembre 2019, par LeendertI have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.
I want to keep both parts of the video after the split.
So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
It will put the new videos inside of a folder called ’new files’.
The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause
-
extracting motion vectors in vp8 encoded videos
30 juillet 2013, par Pavan KI tried visualizing the motion vectors using using ffplay with the vismv option. I could see them for x264 encoded videos. However I am not able to see them on vp8 encoded videos.
Can I extract the motion vectors programatically using ffmpeg or some other way ?