Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

  • Streaming a TS video file over TCP socket connection

    18 août 2016, par Prasanna Sundar

    I am streaming a TS file using ffmpeg. See more at This link

    Now I am writing a custom DataSource of exoplayer to consume this stream through a TCP socket and play the content on exoplayer.

    Right now, exoplayer crashes because of my DataSource’s implementation as it is not able to find proper Extractor for the received data from Datasource (I was using TsExtractor).

    I have the following questions,

    • It is worth to do something like this ? Will I gain anything by this than doing it by HTTP or some other standard protocol(like latency or better streaming) ?
    • DataSource reads the data to a byte array and start playing(I made a lame implementation). How to make it play a streaming content through a TCP socket ? like opening an OutputStream and play from it ?
  • HLS streaming always starts from the beginning in Android Browser

    20 août 2015, par Cesar Zhou

    Problem

    HLS streaming works well in iOS browser(real time mid-stream),

    But in most of Android browser, the streaming always starts from the beginning(First Ts file when streaming started).

    Reference

    • Android System:4.0,4.4,etc..

    • Detail for FFmpeg command : Pull RTMP streaming, then use segment to transfer that into TS splits.

      ffmpeg -re -i rtmp://ipaddress/live/streamname
      -codec:a libfaac -b:a 96k -af volume=1 -ac 2 -ar 44100
      -f segment
      -segment_time 5
      -segment_list_flags live
      -segment_list /path/to/m3u8
      -segment_format mpegts /path/to/ts
    • Detail for m3u8 file

      #EXTM3U
      #EXT-X-VERSION:3
      #EXT-X-MEDIA-SEQUENCE:0
      #EXT-X-ALLOW-CACHE:NO
      #EXT-X-TARGETDURATION:6
      #EXTINF:5.000278,
      file0000.ts
      #EXTINF:5.013356,
      file0001.ts4
    • HLS Player:Ckplayer + m3u8 plugins

    Help

    Does anyone else meet this problem ?

  • Open-source segmenter for HTTP streaming

    28 septembre 2012, par Publiccert

    So, I'm trying to build a segmenter for Linux.

    There are a few linked in this thread : HTTP Live Streaming, FFMPEG & FFSERVER, and iPhone OS 3

    However, the only functional one seems to be for Windows. I've tried following this guide and the svn link : http://www.ioncannon.net/programming/452/iphone-http-streaming-with-ffmpeg-and-an-open-source-segmenter/ with no success either. I can't get that segmenter to work either.

    Does any know of a good, stable, opensource segmenter. We're hoping to feed our rtmp(via Red5) stream into ffmpeg and crank it out over http, if that matters to anyone. Thanks !