
Recherche avancée
Autres articles (111)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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 (...)
Sur d’autres sites (12817)
-
How to install ffmpeg on shared hosting ? [duplicate]
19 mars 2021, par R.H. TasinI am using shared hosting and installed a PHP script there. This script needs FFmpeg (recommended version 3.0+) to work. But I don't know how to install it on shared hosting. I have searched on youtube, they are showing, download the FFmpeg file from ffmpeg.org then set the path inside the script. but that's not working for me. FFmpeg needs to be installed on my server to make this script work.


My server info :


Hosting Package : undefined


Server Name : server


cPanel Version : 92.0 (build 6)


Apache Version : 2.4.46


PHP Version : 7.3.23


MySQL Version : 5.7.33-cll-lve


Architecture : x86_64


Operating System : linux


Shared IP Address : 161.97.101.164


Path to Sendmail : /usr/sbin/sendmail


Path to Perl : /usr/bin/perl


Perl Version : 5.16.3


Kernel Version : 3.10.0-1127.19.1.el7.x86_64


I have tried to run some command VIA terminal of my hosting, but whatever command I type, it says that "command not found".



so now tell me guys, how can I install FFmpeg on my server ?


-
Anomalie #4521 (En cours) : Warning en php 8
14 juillet 2020, par Franck DHello :)
Windows 10 (1909)
Firefox 78.0.2
Easyphp
Apache 2.4.43 x64
PHP 8.0.0 alpha1 x64
MySQL 8.0.20 x64
PhpMyAdmin 5.0.2Si je vais à la page ecrire/ ?exec=admin_plugin (après avec activer gd2 et les miniatures dans ecrire/ ?exec=configurer_avancees)
Warning : Trying to access array offset on value of type bool in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test4\ecrire\inc\filtres_images_lib_mini.php on line 1607
Warning : Trying to access array offset on value of type bool in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test4\ecrire\inc\filtres_images_lib_mini.php on line 1608
Warning : Trying to access array offset on value of type bool in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test4\ecrire\inc\filtres_images_lib_mini.php on line 1609
Warning : Trying to access array offset on value of type bool in C :\Program Files (x86)\EasyPHP-Devserver-17\eds-www\test4\ecrire\inc\filtres_images_lib_mini.php on line 1610 -
ffmpeg : Generate empty audio and video (working for video)
17 septembre 2021, par David FerrisI'm trying to generate a black video with FFMPEG. I have accomplished this with the following :


ffmpeg -t 5 -f lavfi -i color=c=black:s=1920x1080 -c:v libx264 -tune stillimage -pix_fmt yuv420p out.mp4



Unfortunately this video doesn't have any audio tracks. Following this, I have tried to insert -i anullsrc=channel_layout=stereo:sample_rate=44100 :


ffmpeg -t 5 -i anullsrc=channel_layout=stereo:sample_rate=44100 -f lavfi -i color=c=black:s=1920x1080 -c:v libx264 -tune stillimage -pix_fmt yuv420p out.mp4



Unfortunately this gives the error :




anullsrc=channel_layout=stereo:sample_rate=44100 : No such file or
directory




How can I modify my initial script to generate a video with empty audio ?