
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (56)
-
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 ;
-
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) (...)
-
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 ) (...)
Sur d’autres sites (7384)
-
avcodec/tiff : support multiple black levels
25 septembre 2022, par Paul B Mahol -
avfilter/vf_cropdetect : Do not check lines or columns twice on black frames
9 septembre 2014, par Michael Niedermayer -
Let ffmpeg stream empty frames or a still image while waiting for HLS stream to re-stream
8 octobre 2017, par ConnumI’m re-streaming an HLS stream via FFMPEG that needs some special headers to run. It works great, except that the stream needs some time (several seconds) to start. Some clients however time out meanwhile and don’t play the stream at all, and I’m not able to influence their timeout time.
I would like to add some blank frames or even better a still image of my choice that immediately begins to stream until the HLS stream is being processed, so that the clients immediately get something back and start the stream.
In other questions I found the tip to use
-filter_complex overlay
to add black frames, so for my still image I came up with this :-re -loop 1 -i "./default.png" -headers "Special-Header: Foo Bar Baz"
-i "http://some.hls.stream/index.m3u8" -filter_complex overlay -f mpegtsThis command does work generally, but output still starts only as soon as the HLS stream is ready (when I just stream my image, it starts immediately).
Also, I had to remove-c:a copy -c:v copy
, so the stream is being re-encoded, which I wanted to avoid.Is there a way to tell FFMPEG to start streaming some output right away ? If not, what other options do I have to reach my goal (on Windows) ?