
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
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 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)
Sur d’autres sites (10483)
-
problems with video compilation ?
11 août 2016, par GeyanI am trying to establish a watermark to the video using ffmpeg and execute commands in a terminal :
ffmpeg -i pic.mp4 -i logo.png -filter_complex - "overlay=20:20" pic1.mp4
there is such an error :
The encoder ’aac’ is experimental but experimental codecs are not enabled, add ’-strict -2’ if you want to use it.
If the video is not available then the sound encoding + overlay watermark is successful, but there is an error with sound
-
How do steps for make FFMPEG
11 août 2017, par mobina varmazyarI do step 1 to step 6. I am sure that I take NDK and ffmepeg source in valid address but when I execute
./build_android.sh
in the terminal the following lines will be shown :
@mv103 telegram
Can send for me libraries whose can successfully did step 1 to 6 ?
/build_android.sh: line 8: --prefix=/root/桌面/rajabi/android-ndk-
r12b/sources/ffmpeg-3.3.3/android/arm: No such file or directory
./build_android.sh: line 9: --enable-shared: command not found -
python3.6 ffmpeg call MacOSX (closed)
30 mai 2020, par AwazleonI'm using Python 3.6 on MacOSX. I would like to use FFmpeg as Python sub-process. Everything works fine when using the OSX embedded Python 2.7 but using 3.6, this doesn't work.



I get an error message because it doesn't find FFmepg :



raise FFExecutableNotFoundError("Executable '{0}' not found".format(self.executable))
ffmpy.FFExecutableNotFoundError: Executable 'ffmpeg' not found




I tried with ffmpy but I also got the same result by invoking FFmpeg directly :



>>> from subprocess import call
>>> call(["ffmpeg"])
Traceback (most recent call last):
 File "", line 1, in <module>
 call(["ffmpeg"])
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 267, in call
 with Popen(*popenargs, **kwargs) as p:
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 707, in __init__
 restore_signals, start_new_session)
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 1326, in _execute_child
 raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
</module>



I installed the FFmpeg lib. by using Brew through Terminal. It was well installed but only visible by Python 2.7, not 3.6.



Calling it from terminal is working :



$ ffmpeg

ffmpeg version 3.2.4 Copyright (c) 2000-2017 the FFmpeg developers built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.4 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda




I'm not (yet) a Linux specialist but I think that a path is missing for 3.6 to find FFmpeg.



Any clue to solve this annoying issue ?