Recherche avancée

Médias (91)

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 2011

    Contrairement à 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, par

    Pré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
    avcodec/tiff : support multiple black levels
    
    • [DH] libavcodec/tiff.c
  • avfilter/vf_cropdetect : Do not check lines or columns twice on black frames

    9 septembre 2014, par Michael Niedermayer
    avfilter/vf_cropdetect : Do not check lines or columns twice on black frames
    

    Idea from patch by : hjiodjf 97xgw46 <jfbvxt@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_cropdetect.c
  • Let ffmpeg stream empty frames or a still image while waiting for HLS stream to re-stream

    8 octobre 2017, par Connum

    I’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 mpegts

    This 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) ?