
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (67)
-
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 (11758)
-
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()


-
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.
-
how to publish flv file using ffmpeg to RTMP server in `real time` ?
29 octobre 2012, par Akram Berkawywhat i'm trying to do is publishing a
.flv
media file toRTMP
server to let subscribers watch it.
i'm testing to view the stream in several subscribers (theoflaDemo
) and withffplay
.the problem is that ffmpeg publish the 5 minutes .flv file to the server in nearly 20 seconds, in these 20 seconds the stream appear on subscribes, but after that it cuts.
the command i use is :ffmpeg -i file.flv -re -acodec copy -vcodec copy -f flv "rtmp://localhost/oflaDemo/aaa live=1"
how can i force
ffmpeg
to stream the 5 minutes file in 5 minutes, or any other solution.thanks.