
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (108)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (17649)
-
Revision 4116 : Pouvoir choisir ce que l’on souhaite publier depuis la page ...
3 octobre 2010, par kent1 — LogPouvoir choisir ce que l’on souhaite publier depuis la page spip.php ?page=publier Le premier lien du menu devient donc directement actif On incrémente
-
FFMEG : run code after complete conversion
26 octobre 2019, par Сергей БарахтенкоThere is a code that runs FFMPEG
shell_exec($this->config->item('ffmpeg') . ' -i ' . $path . ' ' . $cmd . ' 1>' . $folder . '/log.txt 2>&1 ');
And there is the following line, which should, taking into account the peculiarities of the PHP language, work out immediately after
shell_exec
$params = array(
'status' => 'ready'
);
$result = $this->model->editVideo($video_key, $params);This line simply updates the status of the video in the database
My question is, why doesn’t the further php code work after completion
shell_exec
? What could be the catch ? -
How can I use ffmpeg on PythonAnywhere ?
5 mars 2016, par miguelI’m trying to make a web app with Flask, hosted on PythonAnywhere, which will use the Echo Nest Remix library.
The problem is that Remix uses ffmpeg and PythonAnywhere only has avconv.
Is there any way I can use ffmpeg on PythonAnywhere ?
I’m using PythonAnywhere’s free account if it makes a difference.
Thank you !