- <span class="CodeRay">app.engine=phpcgi
- app.engine.version=7.2
- http.firewall=none
- environment=production
- container.image=stable
- </span>

Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (74)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (11278)
-
Anomalie #2108 (En cours) : Pièce jointe dans un forum
18 juin 2011, par guytarr °Ah, je ne reproduis pas en admin ou anonyme, avec ou sans moderation. Je rouvre le ticket en attendant. L’erreur 500 dans tous les cas de figures ? L’extension forum est bien mise à jour en 48832 ou supérieure ?
-
Anomalie #4504 (Nouveau) : Pas d’installations des tables des plugins avec opcache activé en mutu OVH
5 juin 2020, par Jacques BouthierSur un site sur OVH avec opcache activé* les tables des plugins ne s’installent pa*s.
Version de SPIP 3.3.0-dev, mysql, php 7.2 (Server API : FPM/FastCGI)Si j’active un fichier ".ovhconfig" pour désactiver FPM qui contient
Server API devient : CGI/FastCGI
(Version de SPIP 3.3.0-dev, mysql, php 7.2)
Alors les tables des plugins s’installent correctement -
converting audio file and return it
22 avril 2020, par louay jaberI'm trying to convert an mp3 file to wav file. using the following code



def change_file(file):
 print(file)
 wav='fff'+'.wav'
 print('here ')
 mp3_file=file
 sound=pydub.AudioSegment.from_mp3(mp3_file)
 sound=sound.set_frame_rate(8000)
 temp=sound.export(wav, format="wav")

 return temp//doesnt work




the sound.export saves the file on my machine I don't want it to be saved I want to return it immediately cause I am using this code as an API in Django
so my goal is to except a file and convert it then return it