
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (37)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 : (...)
Sur d’autres sites (5600)
-
FFmpegWrapper - get exact segment start or end times ?
21 décembre 2015, par Stefan KendallRight now, I’m using FFmpegWrapper, and I watch for changes via kernel events. This gets the segments when they’re created, but I’m not sure how accurate this is.
Really, I want to know the presentation timestamp of when the hls segment is created. Right now I capture and encode frames manually and write packets via
FFOutputFile *outputFile;
[_outputFile writePacket:_packet error:&error];
So I have each frame’s presentationTimestamp, but I don’t know which frame goes to which eventual MPEG-TS segment. Once I write to the FFOutputFile, it’s a blackbox to me.
Is there any way to know what frame will go to what segment ahead of time, or get a callback from FFmpeg when a new segment is written ?
Exact times are ideal. Close times are better. Watching the directory for new files via kernel events is what I have right now, so any solution of that time magnitude isn’t useful.
-
Can I pass a list of image into the input method of ffmpeg-python
31 janvier 2023, par se7enMy task involves using ffmpeg to create video from image sequence.
the code belows solves the problem.


import ffmpeg

video = ffmpeg.input('/path/to/images/*.jpg', pattern_type='glob',framerate=20).output(video.mp4).run()



However since the image data we are getting follows the pattern


1.jpg,
2.jpg,
3.jpg
.
.
20.jpg
.
.
100.jpg



the video get created with the glob pattern
1.jpg, 100.jpg, 11.jpg, 12.jpg, ... 2.jpg, 20.jpg, 21.jpg ...
which is very unpleasant to watch.

Is there anyway I can pass a list or anything else aside a path/glob pattern where the images are sorted in order.
Also as a bonus I will be happy if I can choose which files to add as an the input method
input()


-
Ffmpeg zoompan circle rotate angle zoomin ! Is it possible ?
6 mai 2022, par RinoI want the zoomin to come as circle as showen on video if possible.
Image to animated video using ffmpeg zoompan(optional)


Tried this one got error : 'not found option rotate'


ffmpeg -i img001.jpg \
 -vf "zoompan=z='min(zoom+0.0005,1.5)':\
 y='if(gte(zoom,1.5),y,y+1)':
 x='x':
 d=225:
 rotate=-3*PI/180" \
 -c:v libx264 -t 10 output4.mp4



Tried also this one, no luck, not what i wanted :(


ffmpeg -i img001.jpg 
 -vf "zoompan=z='min(zoom+0.0005,1.5)':
 y='if(gte(zoom,1.5),y,y+1)':
 x='if(gte(zoom,1.5),x,x+1)':
 d=225" \
 -c:v libx264 -t 10 output4.mp4



The effect shown in 3 seconds :
Sample video (min 3:17 - 3:20)
Sample video


Any help is appreciated thanks