
Recherche avancée
Autres articles (97)
-
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 -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6603)
-
Anomalie #4818 : [3.2] PHP Fatal error : Uncaught Error : Call to undefined function barre_outils_c...
13 juin 2021Précision : quand cette erreur se produit, elle concerne aussi ecrire/
Il n’est donc possible de s’en sortir qu’en vidant le dossier tmp/cache/ par FTP ou SSH -
Anomalie #4818 (Fermé) : [3.2] PHP Fatal error : Uncaught Error : Call to undefined function barre_...
15 juin 2021Ok, c’est possible finalement dans certaines circonstances je présume.
- https://git.spip.net/spip/porte_plume/commit/f2158f9f pour master
- https://git.spip.net/spip/porte_plume/commit/8ae9b48a pour 3.2 -
Disable output in subprocess call ffmpeg
16 juillet 2021, par RandomPersonOnlineI am currently using the following command in python to convert my .webm file to .ogg


subprocess.call(['ffmpeg', '-i', songfile, songfile + ".ogg"])



This prints out a bunch of output which I don't require, But I cannot disable it using this command.


subprocess.call(['ffmpeg', ' -loglevel quiet','-i', songfile, songfile + ".ogg"])



I get error


Unrecognized option '-log-level quiet'.



How can I disable ffmpeg output here ?