
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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 (16547)
-
Cannot connect to the Docker daemon at unix :///var/run/docker.sock. Is the docker daemon running ? MacOS X El Capitian
22 juillet 2020, par Dinar Abdul Hollikwhen I run the command in my terminal


docker pull alfg/nginx-rtmp



When it has been run, an error occurs like this


Using default tag: latest
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?



how to fix ?


-
ffmpeg and ffprobe file installation suggestion
4 juillet 2020, par Mithun DeshmukhWhere to run below code in WHM terminal or need to update in config.php ?


$ffmpeg_lib="/usr/bin/";
 $ffprobe_lib="/usr/bin/";
 $ffmpeg = FFMpeg\FFMpeg::create(array(
 'ffmpeg.binaries' => $ffmpeg_lib.'ffmpeg',
 'ffprobe.binaries' => $ffprobe_lib.'ffprobe',
 'timeout' => 3600, // The timeout for the underlying process
 'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
), null);



thanks


-
how to use cgroups in php exec
13 juillet 2020, par SkoraI'm trying to use cgroups in php


And I did the following :


sudo cgcreate -g cpu:/www-data
sudo cgset -r cpu.cfs_period_us=1000000 www-data
sudo cgset -r cpu.cfs_quota_us=100000 www-data



And when I do use it on ffmpeg via the terminal it works fine


But when I used it in php like :


exec("cgexec -g cpu:www-data ffmpeg -i music.mp3 -ac 1 -map 0:a -acodec libopus -b:a 64k -vbr off -ar 24000 music.ogg");



does not work


Can it be used with exec ?