
Recherche avancée
Autres articles (48)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (8870)
-
Evolution #3229 : Utiliser une méthode standard dès que l’on a besoin d’un module JS
22 octobre 2014, par cedric -Il y a plusieurs problématiques : chargement asynchrone, chargement seulement si besoin, dépendances.
A voir comment traiter ça complètement et proprement, pas de solution idéale en tête.
Actuellement ma préférence va pour :
- si le JS a des chances d’être utilisé sur une majorité de page, insertion dans le head pour qu’il soit minifié, concaténé avec les autres scripts et toujours chargé
- si le JS sera vraisemblablement utilisé sur une minorité de page, on charge son js via getScript+callback ce qui permet de ne le charger que si besoin, et est compatible chargement async par jQlMais ça ne traite pas tous les problèmes.
-
ffmpeg unable to initialize module windows 7 32 bit
24 septembre 2014, par WilliamsI have installed ffmpeg in window 7 32 bit in my php extension.When i start apache,i am getting message like "PHp startup : ffmpeg : unable to initialize module"
My Xampp version : 2.5
My php version : 5.3.8.0How to solve this issue ?
-
running command line programs in background using python os or subprocess module
12 mai 2017, par user3735489I am trying to run a command using
os
orsubproccess
module in python. the command prompt window briefly flickers before terminating. Is there a way of eliminating that popping up of command prompt window..?For example :
os.system("ffmpeg -i output.wav output.flac")
Is there a way I can run this in the background so that user may not notice this..?
I am running windows 7 with python 2.7.