Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (63)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7877)

  • How to generate the first few HLS playlist files for a live broadasting event ?

    1er mars 2014, par user3367166

    Knowing that HLS is based on a playlist of N segment files, how to properly generate the first (N-1) playlist files for a live broadcasting event (sliding window method) ?
    - should we wait for the first N segments to be recorded, and send a complete first playlist file ? This of course works but means that there is a delay of N x segment_duration before streaming starts.
    - or is there an official way of sending "partial" playlist files such that streaming starts after 1 x segment_duration ?

    I have experimented with partial playlist files : ffmpeg 2.1.3 appends new segments into the playlist as they are recorded (below). I find this a reasonable way but my ipod5 usually stops playback after the first playlist or sometimes manages to playback the first few playlists but with much choppiness, so I believe it is not a supported way. Is there any official solution ?

    1. 1st playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
    2. 2nd playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
      #EXTINF:1,
      segment1.ts
    3. 3rd playlist file :

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-TARGETDURATION:8
      #EXT-X-MEDIA-SEQUENCE:0
      #EXTINF:8,
      segment0.ts
      #EXTINF:1,
      segment1.ts
      #EXTINF:8,
      segment2.ts
  • HLS : Handle the case when hls_list_size=0. Playlist file should contain all the segme...

    1er mars 2014, par Senthilnathan M
    HLS : Handle the case when hls_list_size=0. Playlist file should contain all the segments. Fixes bug #3376.
    

    Signed-off-by : Senthilnathan M <senthil.codr@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/hlsenc.c
  • hlsenc : write playlist into a temp file and replace the original atomically

    20 février 2015, par Hendrik Leppkes
    hlsenc : write playlist into a temp file and replace the original atomically
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/hlsenc.c