
Recherche avancée
Autres articles (72)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (8140)
-
Add Timestamp to extracted thumbnail's name from a video file
12 décembre 2013, par Harish VaradaI have a requirement of generating thumbnails(camera change, slide change, scene change) from a videofile with it's timestamp(pos) included in the generated output thumbnails.
I used the following command to generate thumbnails :
ffmpeg -i input.mp4 -vf select="eq(pict_type\,I)" -vsync 0 -an keyframe-%06d.png
This command works absolutely fine for generating thumbnails (assume 15 thumbnails are generated) with names in sequence like : keyframe-000001.png, keyframe-000002.png, .... , keyframe-000015.png.
But, according to my requirement, I need the output thumbnail file names something like as follows :
keyframe-001426.png, keyframe-002769.png, .... , keyframe-014571.png where
001426 is the position of thumbnail keyframe-000001.png
002769 is the position of thumbnail keyframe-000002.png
014571 is the position of thumbnail keyframe-000015.png
Is there a way to achieve this in a single command.? Please help me out achieving this.
-
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


-
ffmpeg : generate different multibitrate video from single input
26 septembre 2016, par Stack OverflowI want to generate multiple multibitrate files from one single resource.
I want to generate 4 different quality file : 240p , 360p , 720p , 1080p.
My requirement is suppose i provide a file having 360p quality then only 2 file get generated
1) 240p
2) 360pIf, I provide a file having 720p quality then 3 files get generated
1) 240p
2) 360p
3) 720pExactly same like youtube. (If you upload higher quality video then it provides more quality option , if you upload lower quality video then it provide less quality option).
Is there any ffmpeg command which do same ? i.e from single input source it identify and generate multibitrate file of lower bitrate automatically.