
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (99)
-
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 (9316)
-
Converting PNG images to MP4 in Jupyter
15 mars 2020, par Steve HThis has had me going round in circles for hours, so I’m hoping one of you kind gents can help.
I am trying to learn more about data science and have followed this course on creating a population pyramid (https://www.viralml.com/video-content.html?v=WmyYyOtZwzs). There were a few problems in the code, which I rectified, but one has eluded me.
I am trying to convert a collection of images in the format anim_%d.png to an mp4 file using the code :
ffmpeg -framerate 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4
However, I get an invalid syntax error.
I have also tried :
avconv -f image2 -i anim_%d.png -r 76 -s 800x600 foo.avi
then :
ffmpeg -r 10 -i "anim_%d.png" -pix_fmt yuv420p out.mp4
But they all give a syntax error.
I am using Jupyter, via Anaconda on a Windows machine with Python 3.
Any help would be greatly appreciated.
Thanks
Steve -
How to get Bitrate and FPS statistics with ffplay
30 novembre 2016, par S4M11RI would like to measure statistics (FPS, Bitrate) from a ffplay command instead of ffmpeg. This because recording for many hours takes a lot space on disk.
The way I do it now is that I record a video with ffmpeg for a specific duration and save statistics (-qphist) in a file
Command :
ffmpeg -rtsp_transport tcp -t $duration -i rtsp://$cred/axis-media/media.amp?videocodec=h264 -qphist -vcodec copy -r 60 -y $outputDIR/camRecording_h264.avi &> $logfile &
Instead I would like to play a rtsp video and collect statistics so that video is not saved on disk but still get the same statistics.
Command
ffplay "command" &> file
With ffplay I can get some info with loglevel but nothing about FPS or Bitrate
I checked man ffplay and googled around but could not find anything about this.
Is it even possible to get FPS and Bitrate statistics from ffplay ?
Best regards
-
Zoneminder Watermarking on MP4 video from custom ZM branch
25 juillet 2017, par moeiscoolThe ZM i have installed is the video branch. I followed these instructions to install it.
https://github.com/ZoneMinder/ZoneMinder/tree/video
https://github.com/ZoneMinder/ZoneMinder/issues/452I am looking to watermark my recordings. I have successfully achieved what i want on regular ZM. I just need it on the MP4 branch version of ZM. I have used ASR to search for "ffmpeg" and "mp4" but i only found anything relevant to video creation in zmvideo.pl... but i think zmvideo.pl is only for generating videos from JPEG files. I simply want to have the watermark appear on the mp4 file when it is created.
So in short after a long explanation : Where should I be looking for the commands that create the MP4 files in ZM ? or do i have to add them to jpeg frames somewhere or something ? sorry for the noobiness... I have spent at least 3 hours looking for this and I’m actually sweating from frustration. ANY help at all would be appreciated :) Thanks in advance.