
Recherche avancée
Autres articles (65)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (10787)
-
syntax error in shell_exec php
1er avril 2018, par Gerag2I’m stumped seems everything is right don’t know why it gives an error
<?php
echo "Starting ffmpeg...\n\n";
echo shell_exec("ffmpeg -i /var/www/vhosts/site.com/httpdocs/Videos/*.* -i "$i" -c:v libx264 -crf 24 /var/www/vhosts/site.com/httpdocs/Videos/Output/"${i%.*}.mp4 null >/dev/null 2>/var/log/ffmpeg.log &");
echo "Done.\n";
?>and yes this codes runs in terminal
for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done
-
How to create a .command file with unity with execute previlages ?
30 janvier 2017, par EhabSherifHello everyone how do you do,
In my app I’m trying to use ffmpeg through a batch file, windows works great writing .bat files, however when I write .command files on MAC the files don’t open and tells me that I don’t have permission.
Also when I run the command
chmoc u+x [.command File Path]
through the terminal the file works..Knowing that when I create a new text file with the command and rename it to .command it works fine.
I write the command file in unity using File.WriteAll, is there any other way for writing the file that gives the previlage needed ? knowing that I run the batch file using a process in unity.
Thank You,
-
building ffmpeg library for android on linux
27 juillet 2015, par Harpreet KaurI am trying to install ffmpeg libaray on linux for my android application.
The link which I am following is https://www.assetbank.co.uk/support/documentation/install/ffmpeg/
I have successfully completed all the steps except the last one
i.e " Run "/sbin/ldconfig" as root. "It is showing the following error in the linux terminal :
anirudh@anirudh-System-Product-Name :/sbin$ ldconfig
/sbin/ldconfig.real : Can’t create temporary cache file /etc/ld.so.cache : Permission deniedPlease comment if anyone can suggest something regarding this issue.