
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
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 -
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 (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6943)
-
windows SOX MP4/FFMPEG support
4 septembre 2012, par user1125562i'm trying to use SOX to cut certain mp3s, convert them to different formats and add fade in-out to the files.
It works fine with mp3 to mp3 but when i try to convert it from an MP3 to an m4r i get the error : "sox FAIL formats : no handler for file extension `m4r'".
I'm using SOX in windows so how can i install the ffmpeg package on top of the SOX so it knows waht to do with the m4r format ?
on the same machine i can use ffmpeg to convert from mp3 to m4r just fine. It sucks that ffmpeg doesn't offer FADE for audio.
-
Docker : How to set an environment path like in windows ?
12 mars 2021, par DarkFantasyI am using
FFMPEG
and I have its bin path set in my environment path on windows. I need to do the same in docker.

FROM python:3.8.5
ENV APP_HOME /app
WORKDIR $APP_HOME
COPY . /app
RUN pip install -r requirements.txt
RUN setx /M PATH "%PATH%;D:\FFmpeg\bin"
ENTRYPOINT ["python"]
CMD ["app.py"]



This docker build fails at
RUN setx /M PATH "%PATH%;D:\FFmpeg\bin"
with the error :/bin/sh: 1: setx: not found


executor failed running [/bin/sh -c setx /M PATH "%PATH%;D:\FFmpeg\bin"]: exit code: 127



I looked at answers here and here but it didn't help.
Requesting a way to get my docker file to build with the environment path in the container set to
D:\FFmpeg\bin
. Thank you.

-
Is there a temporary fix possible to compile successfully working ffmpeg for the windows 10 using MinGW ?
14 mars 2021, par Good ManCurrent ffmpeg depends on CryptAcquireContextW what was deprecated and now removed from Windows. It compiles fine, but on running it crashes with text : "ffmpeg procedure entry point CryptAcquireContextW could not be located in the dynamic link library". advapi32 does not provide it anymore ? The net say's it is deprecated already for a longer, however latest stable 4.3.git ffmpeg still depends on it.
Is there a temporary fix possible to compile successfully working ffmpeg for the windows 10 using MinGW ?