
Recherche avancée
Autres articles (102)
-
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) (...)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...)
Sur d’autres sites (4760)
-
How to setup FFServer with FFMPEG package on window ?
14 décembre 2015, par DigantI am running FFMPEG package in my Window PC. I want to start live streaming part with FFSERVER. I didn’t find any ffserver.exe files to download. I am running with the many query :
In FFMPEG document, there are ask to configuration ffserver.conf files. and its fetch from etc/ffserver/cong. How do i find this file and their location in my computer ?
I want simple basic step to run ffserver on window.
Thanks
-
Run ffmpeg once but get multiple screenshots
9 novembre 2017, par user779159I get a screenshot from a remote video file using ffmpeg with a command like
ffmpeg -ss $TIME -i $URL -frames:v 1 -filter:v $FILTER file.jpg
(-ss
comes before-i
for fast seeking https://trac.ffmpeg.org/wiki/Seeking).$FILTER
is how I want to transform the screenshot, like cropping/resizing. In this case it’s"crop=iw-5:ih-5, scale=100:100:force_original_aspect_ratio=increase, crop=100:100"
)If I want to get 3 screenshots, at 3 seconds, 5 seconds, and 14 seconds, I need to run this command 3 separate times, passing 3, 5, and 14 as
$TIME
. But is it possible to run the command once but have it output multiple screenshot files for the different times ?And would ffmpeg do that in a way where it would make the round-trip remote request just 1 time instead of 3 ? In that case it would be more efficient. If not, then maybe it’s better to make the 3 requests separately since I could do it in parallel.
-
How to generate only 10 thumbnails irrespective of video duration with ffmpeg
15 août 2022, par EaBengaluruHi i want to generate only 10 thumbnails irrespective of video duration with
ffmpeg


I have followed this thread Create multiple thumbnails from a video at equal times / intervals


here is the command i'm using


ffmpeg -i input.mp4 -vf "select='not(mod(t,60/12))'" -vsync vfr output_%04d.jpg



for 14.4 duration video it is generating only 3 thumbnails , i want always 10 with equal interval.


For example if i have
120
duration video i must get thumbnails at

[0 or 12, 24,36,48,60,72,84,96,108,120]



Question : i want to generate always 10 thumbnails with equal interval as shown in example for duration of
120