
Recherche avancée
Autres articles (85)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (11920)
-
dashenc : Fix writing of timelines that don’t start at t=0
29 décembre 2014, par Martin Storsjödashenc : Fix writing of timelines that don’t start at t=0
When writing an explicit time, reset the cur_time variable to this
value as well. This avoids writing excessive time attributes for each
segment in the timeline, as long as the segments are continuous.Signed-off-by : Martin Storsjö <martin@martin.st>
-
FFMPEG : replacing audio at specific part start and end time
2 juin 2020, par steveI have this code I found and it works on the start part but not the end.

I want it to start at 2 seconds and finish at 10 seconds.


ffmpeg -y -i "C:\Users\test\Desktop\vidz\New folder (2)\target\demo.mp4" -i "C:\Users\test\Desktop\vidz\New folder (2)\target\2.mp3" -filter_complex "[0]atrim=0:2[Apre];[0]atrim=end=0:6,asetpts=PTS-STARTPTS[Apost];[Apre][1][Apost]concat=n=3:v=0:a=1" -vcodec copy -y "C:\Users\test\Desktop\vidz\New folder (2)\target\output1.mp4"




were you se atrim=0:2 starts at 2 seconds this works and atrim=end=0:10 not working


-
Adding Splash Screen to start of video using FFMPEG
20 août 2020, par Ali AghaI'm busting my head against the wall trying to add a splash screen. Here's what I'm doing :


- 

- Convert the still image to "ts" file with silenced audio stream




ffmpeg -loop 1 -i image.png -c:v libx264 -t 10 -c:a libvo_aacenc -b:a 160k -bsf:v h264_mp4toannexb -f mpegts -crf 32 image.ts


- 

- Now, take the original video and convert it to "ts" file too




ffmpeg -i video.mp4 -c:v libx264 -c:a aac -b:a 160k -bsf:v h264_mp4toannexb -f mpegts -crf 32 video.ts


- 

- Now, combine the 2 "ts" files




ffmpeg -i "concat:image.ts|video.ts" -c:v libx264 -c:a aac -b:a 160k -bsf:v -y output.mp4


Problems :


- 

-
The output file is generated just fine, but audio is totally missing. The "output.mp4" video generated in step # 3 actually has an audio track, but splash screen video has silenced audio.


-
I'm also not able to add a transition. I have researched much on that but unable to add it, please help in that.








I would really appreciate your thoughts ! Thank you