
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 (66)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6555)
-
ffmpeg-php module fails in linux
26 juillet 2017, par SwatiI’ve been trying this for a couple of days now. I am trying to install ffmpeg-php on my CentOS server.
OS : CentOS 6
PHP : 5.5
ffmpeg : 1.2.1
ffmpeg-php : 0.6.0
The ffmpeg installation went on without a hitch and I am able to convert files back and forth via the CLI.While installing ffmpeg-php, I encountered errors while making (after configuring) due to time.h references which was corrected by renaming the files creating with an extension .loT to .lo (as rightly pointed out here)
Once this was done, the make process went on smoothly and the make install went through without a hitch. However, after specifying the extension=ffmpeg.so in the php.ini file and after restarting Apache, the module doesn’t load or show up in phpinfo().
The Apache error log shows only "PHP Warning : PHP Startup : Invalid library (maybe not a PHP library) ’ffmpeg.so’ in Unknown on line 0" and nothing else.
make test also shows the same error and FAILS the associated tests. I’ve checked here which wasn’t very helpful. Also, I read somewhere that it may be the issue with permissions but the permissions for the ffmpeg.so file is 755.
Any help is appreciated.
Thanks in advance.
-
ImportError : No module named 'pydub'
28 janvier, par ensmingerI am creating a simple script that will use
pydub
to fetch files from a directory based on their name, then stitch a few of them together and export the result.


I had the script working great in a Windows environment (Win 7, python 3.4), but now I'm trying to run on OSX.



I have installed all necessary components -
ffmpeg
,libav
. I have just installedpydub
withpip
, pulling directly from github.


My file starts with the input statement
from pydub import AudioSegment
, and this is what I get :


Traceback (most recent call last):
 File "functions.py", line 2, in <module>
 from pydub import AudioSegment
ImportError: No module named 'pydub'
</module>



Thoughts ? What am I missing ? Any help is greatly appreciated !


-
"python setup.py egg_info" when installing a module
9 novembre 2017, par Adam KamilPS C:\Users\adamk\AppData\Local\Programs\Python\Python36-32\Scripts> pip install --upgrade setuptools
Collecting setuptools
Downloading setuptools-36.6.0-py2.py3-none-any.whl (481kB)
100% |████████████████████████████████| 481kB 435kB/s
Installing collected packages: setuptools
Found existing installation: setuptools 28.8.0
Uninstalling setuptools-28.8.0:
Successfully uninstalled setuptools-28.8.0
Successfully installed setuptools-36.6.0
PS C:\Users\adamk\AppData\Local\Programs\Python\Python36-32\Scripts> pip install .\ffmpeg-3.4.tar.bz2
Processing c:\users\adamk\appdata\local\programs\python\python36-32\scripts\ffmpeg-3.4.tar.bz2
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "c:\users\adamk\appdata\local\programs\python\python36-32\lib\tokenize.py", line 452, in open
buffer = _builtin_open(filename, 'rb')
FileNotFoundError: [Errno 2] No such file or directory: 'C:\\Users\\adamk\\AppData\\Local\\Temp\\pip-rlpa5bd4-build\\setup.py'
----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\adamk\AppData\Local\Temp\pip-rlpa5bd4-build\
</module></string>I tried many things like updating my
setuptools
. Stil didint work. If someone could help, it would really help ! -Adam