
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (59)
-
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (10971)
-
How to create a video from still images but with low framerate (like a slideshow) ?
18 septembre 2012, par AKEI have some still images which I would like to have in a video that shows each image for a reasonable length of time, say 1 second, or 0.5 second.
I'm using the command :
ffmpeg -f image2 -r 1 "Imgp%004d.jpg" -s 640x480 -b:v 1024k result.avi
where
-r 1
supposedly sets the framerate to 1 fps.This does indeed produce a result (avi), but playback (on
vlc
) gets stuck on the first frame and never advances !If I use
-r 3
instead, I get a result that plays a bit too fast, i.e. at 3 frames per second. Moreover, it doesn't include all of the still images.Two questions :
1) How can I force ffmpeg to compile the video at 1 fps ?
2) How can I force all 7 frames to appear ? (Preferably without duplicating frames, i.e. trial and error)
I suspect I'm missing something basic around the relationship between perhaps input read rates, output frame rates, and number of frames to be included.
Would appreciate any insights.
-
FFMpeg Segment for Quicktime
30 mai 2015, par Gavin HinfeyI have a 20 sec h264 .mov with edits every 2 seconds. Download the video here : http://we.tl/OsLdXMtkPe.
I need to segment the video on the cuts. Using FFProbe I have found the cuts in frames.$ffmpeg -i Asia.mov -force_key_frames 88,134,180,223,271,317,365,410,455,499,549,588 -codec:v mpeg4 -codec:a pcm_s16le -map 0 -f segment -segment_frames 88,134,180,223,271,317,365,410,455,499,549,588 out%03d.mov
The resulting video plays correctly only in windows media player and vlc.
It does not play correctly in Quicktime 7 or iTunes.How can I split this video at these frame intervals with an iTunes compatible result ?
Thanks
Gavin -
FFMPEG streaming all Images instead of last
8 juin 2015, par Sid411I am taking a snapshot of the screen and saving the image to hard disk.
After saving the image I stream the image using FFMPEG to another machine. I replace the same image in the disk as I want to stream the latest image.
However when I stream the image, the other machine plays all the previous images too.
Can someone please tell me why this happens even though I delete my previous image.The FFMPEG command that I am using is
ffmpeg -re -loop 1 -r 15 -vcodec mjpeg -i /home/image.jpg http://localhost:8072/feed1.ffm
Also, the streaming stops after a certain time.
Can some one guide me on these two issues ?
Thank you.