Recherche avancée

Médias (91)

Autres articles (40)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (4561)

  • Evolution #2350 : rendre plus tolérant #HTTP_HEADER et son :

    25 septembre 2011, par cam.lafit -

    Ciao Je n’ai pas de cas technique bloquant juste d’usage, du genre tu perd ta journée à chercher le bogue. De plus la spec (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html) me semble du coup imprécise sur la question de cet espace. Les exemples sont sans espace mais la spécification isole (...)

  • Named pipes and can they stream data ?

    30 juillet 2013, par chembrad

    I asked a previous question here :

    Stream video from ffmpeg and capture with OpenCV

    and I want to know more about named pipes in general. Can I use named pipes to stream data ? For example, can I continuously add data to the pipe (via ffmpeg) in conjunction with reading data with another application ? Or is there another method to do this ?

  • Sending input to a command line program from PHP

    11 octobre 2011, par Karl Jóhann

    I'd like to be able to stop FFMPEG from PHP (on Windows).

    What I'm doing now is starting it as so :

    pclose(popen("start ffmpeg -i rtmp://livestream -o a_file.mp4", "r"));

    But as soon as I've done that I've lost all connection to the program (right ?).

    I would like to send a 'q' to the process to stop it. Is there any way to do this ?

    EDIT : I should probably explain that I use pclose because I need the PHP script to keep running and thus close the file pointer. Maybe the question should be : How can I keep the script running and the file pointer open ?