Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (100)

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

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

  • How to pipe a new command after ffmpeg background process completes ?

    12 septembre 2013, par Mike Feng

    This is my ffmpeg process :

    exec("/usr/local/bin/ffmpeg -y -i source.avi dest.mp4 >/dev/null 2>/dev/null &

    Now, I wish to execute a PHP file after the conversion is complete. Logically, this is what I have :

    exec("/usr/local/bin/ffmpeg -y -i source.avi dest.mp4 >/dev/null 2>/dev/null ; php proceed.php &

    This doesn't work though, since then PHP will hold up the process to wait till the ffmpeg conversion is complete. What I want is basically to call proceed.php after the conversion completes, both of which are done in the background.

    If anyone can provide the Windows server solution, that will be awesome too.

  • How to pipe two separate outputs of ffmpeg to separate programs ?

    3 octobre 2018, par Ryan Griggs

    I am running a ffmpeg command which takes a single video input (h.264) and 1) outputs a screen grab every 5 seconds and 2) transcodes the original video to a different bitrate/profile/etc.

    I would like to pipe the output of each operation to a separate program. Currently, I can pipe the last output to a program by adding a trailing ’dash’ (-) at the end of the command.

    However, I can’t figure out how to pipe both outputs to different programs simultaneously. Any help appreciated.

    Example command which pipes the last input to another program :

    ffmpeg -i video.mp4 -r 1/5 test%03d.jpg -vcodec h264_omx -r 8 -b:v 512k - | ./myprogram
  • How to pipe a new command after ffmpeg background process completes ? (PHP)

    12 septembre 2013, par Mike Feng

    Ok this is my ffmpeg process :

    exec("/usr/local/bin/ffmpeg -y -i source.avi dest.mp4 >/dev/null 2>/dev/null &

    Now, I wish to execute a php file after the conversion is complete. Logically, this is what I have :

    exec("/usr/local/bin/ffmpeg -y -i source.avi dest.mp4 >/dev/null 2>/dev/null ; php proceed.php &

    This doesn't work though, since then PHP will hold up the process to wait till the ffmpeg conversion is complete. What I want is basically to call proceed.php after the conversion completes, both of which are done in the background.

    If anyone can provide the Windows server solution, that will be awesome too. Thank you in advanced !