
Recherche avancée
Autres articles (14)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (2875)
-
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.
-
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 -
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.