Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (76)

  • 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 ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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 (6659)

  • Revision 1cfaaf678d : y4m_test : drop '_t' from local typenames _t is reserved by posix + switch to c

    17 juillet 2014, par James Zern

    Changed Paths :
     Modify /test/y4m_test.cc



    y4m_test : drop ’_t’ from local typenames

    _t is reserved by posix

    + switch to camelcase
    http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml#Type_Names

    Change-Id : I2ede16e0903a96225a342609545281fdbb83d638

  • Changed the local scoping of the window variable with this to prevent an obscure bug in IE7

    4 octobre 2012, par Laurent Goderre

    m colorbox/jquery.colorbox.js Changed the local scoping of the window variable with this to prevent an obscure bug in IE7 In some very rare occassions using this as the windows variable causes a memory leak in IE7.

  • Local file creation of ffmpeg hls http stream

    10 juillet 2018, par Emilian

    After researching all the options for ffmpeg hls streaming and setting it up for uploading to a http server i encountered a problem, ffmpeg also creates local files for the segment/playlist in the current working directory.

    What im trying to achieve is upload to a server and serve the segments and playlist from memory and not from disk. Tried setting a http url for segments like this :

    ffmpeg -re -i filter_test.ts -f hls -hls_segment_filename http://localhost:3000/segment/playlist_%03d.ts -method PUT http://localhost:3000/segment/playlist.m3u8

    but that also didnt work.

    Is there any way to stop ffmpeg from creating local files for the hls stream and only upload them to the server ?

    In the logs it says

    [hls @ 00000274041104e0] Opening 'http://localhost:3000/segment/playlist_000.ts' for writing
    [http @ 00000274046a2fa0] request: POST /segment/playlist_000.ts HTTP/1.1

    but nothing about writing it to a file.