Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (50)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5684)

  • 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 ?
  • avformat/mov : don't read key_size bytes twice in the keys atom

    2 avril 2024, par James Almer
    avformat/mov : don't read key_size bytes twice in the keys atom
    

    We only support mdta as type, yet we were not skipping other types,
    but rather reading key_size worth of bytes twice per entry.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mov.c
  • Support BMP files that do not properly align lines.

    26 janvier 2015, par Reimar Döffinger
    Support BMP files that do not properly align lines.
    

    Quite a few programs missed that detail of the spec
    (including old versions of FFmpeg I believe) and when
    we would otherwise fail anyway it seems worth a try
    to use a simple byte-aligned stride instead.

    Signed-off-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>

    • [DH] libavcodec/bmp.c