Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (112)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (4214)

  • Updated the homepage to be http://zeroclipboard.org/

    29 août 2013, par JamesMGreene
    Updated the homepage to be http://zeroclipboard.org/
  • Realtime http ogg stream with ffmpeg latency

    4 septembre 2013, par MastErAldo

    I'm using the Kinect as an infrared camera and through a named pipe i send each captured frame to FFMPEG which encodes them in an ogg/theora stream that is sent to an http server.
    The server than broadcasts the video to every connected user. The users use the Cortado applet to play the video.

    The video plays fine, but the latency keeps on increasing continuously. So if at the beginning the latency is about 100ms, in a minute it reaches up to 10 seconds.

    However the playback is smooth, the bandwidth is enough and the encoding machine and the server CPU is not overloaded, so I don't understand what can make the latency increase.

    This is the ffmpeg command line that we use :

    ffmpeg.exe -f segment -f rawvideo -pix_fmt rgb565 -s 640x480 -i \\.\pipe\CAH_STREAM_PIPE -fflags nobuffer -r 60 -b:v 128k -bufsize 1024k -s 240x160 -codec:v libtheora -qscale:v 1 -f ogg http://localhost/video_stream.ogg

    Am I missing some parameters or setting some of them to wrong values ? Or the problem is elsewhere ?

    BTW : I'm not sure about using nobuffer and bufsize at the same time

    Thanks

  • How to pass additional HTTP header parameters with avformat_open_input() ?

    14 juillet 2014, par 4ntoine

    I’m using android port of ffmpeg and i need to pass additional HTTP header parameters to the server to identify the client.

    How can i do it ?

    I can see avformat_open_input(.. AVDictionary **options ..) parameter (documentation).
    Can i use it ?