Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (112)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Revision 96626 : bugfix sur la regexp qui choisit les champs pour index : un champ de type ...

    14 avril 2016, par cedric@… — Log

    bugfix sur la regexp qui choisit les champs pour index : un champ de type ’tinytext’ tout court doit bien etre pris en compte

  • ffmpeg url protocol - annoying issue with url_seek

    7 juin 2014, par Gieas

    I’m trying to add my own URL protocol to my improved dranger’s video player using ffmpeg.

    The URLPRotocol is : http://www.ffmpeg.org/doxygen/2.1/structURLProtocol.html

    It seems that (For some weird reason) ffmpeg calls my ’url_seek’ before the movie even starts.

    The function prototype is the same as lseek’s :

    int64_t my_url_seek(URLContext *h, int64_t pos, int whence)

    FFmpeg first calls the function with the values : POS = 0 , WHENCE = 65536

    According to ffmpeg’s docs the value 65536 (AVSEEK_SIZE) means that ffmpeg wants the video size - so, my server responses to it with the video size.
    But after that, it tries to seek with weird values :
    POS = 8827210, WHENCE = 0, POS = 9912, WHENCE = 0 and so on.. (Same values all the time)
    Anyways, according to ffmpeg’s doc whence should return the current position of the file (measured from the beginning of the file in bytes) and that is what I’m giving him (Except special case when it wants the video size as I mentioned before) - but it still doesn’t work.

    I don’t get it. What is it trying to do ? It can’t really be my fault because I did just use dranger’s video player and registered my own protocol. anyone has any idea what’s going on here ?

  • iOS video streaming to server using websockets

    6 septembre 2013, par user1516711

    Is it any way possible to stream video frames live from iOS SDK using AVCaptureSession to a remote server using WebSocket like SocketRocket ? What are pros and cons if it is possible ?