
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (73)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (8348)
-
Imagick and Gmagick builds available for Windows
The new Windows build page http://valokuva.org/magick/ contains builds for both Imagick and Gmagick. All builds are done using VC9 and PHP 5.3.
ImageMagick builds are QuantumDepth 16 (default).
GraphicsMagick builds are QuantumDepth 8 (default).Please note that these builds won’t work with the official PHP.net binaries which are compiled using VC6.
Edit : Pierre corrected me that there are official VC9 builds of PHP available at http://windows.php.net/download/
-
How can I make sure ffmpeg is found with videohash ?
19 août 2022, par Alarm-1202I have been trying to deploy an app on Digital Ocean ; I have installed the necessary packages but I keep getting an error from the videohash library :
videohash.exceptions.FFmpegNotFound
I have tried adding the ffmpeg package directory toPATH
by running :

export PATH="$PATH:/workspace/web/.heroku/python/lib/python3.10/site-packages/ffmpeg"



I also tried adding it as an environment variable at app and component level and adding the export command to
./bashrc
but nothing I do seems to work. Is there another way I could try to solve this issue ?

-
How to read information from .3gp and .mp4 using ffmpeg-php ?
12 juillet 2016, par NeltharianI have a bit of a problem with ffmpeg-php. I’m trying to get some information from video files and it works pretty fine with file formats like .avi, .mpg or .flv but when I try to use .3gp or .mp4 in :
$movie = new ffmpeg_movie('path/to/file/test.3gp');
I get error like this :
ffmpeg_movie::__construct() []: ISO: File Type Major Brand: 3gp5
or
ffmpeg_movie::__construct() []: ISO: File Type Major Brand: mp42
I installed ffmpeg-php on WAMP using instructions found here :
http://stackoverflow.com/questions/1172916/how-to-install-ffmpeg-in-wampserver-2-0-windows-xpI need those information to send them to ffmpeg using exec(). Anyone could help me with this ?