
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (41)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (4997)
-
how can stop stream after start stream with ffmpeg php ?
8 octobre 2017, par kenano starooI’m attempting to run the following command in PHP (on Ubuntu) :
it is start button
start<?php
if (exec("ffmpeg -i input.avi output.avi >/dev/null 2>/dev/null&"))
{ echo "Success"; }
else { echo "No good"; }so after start how i can kill-stop this with -php code
Any ideas on this be working for stop it ? Thanks.
-
How to stop ffmpeg that runs through java process
9 janvier 2014, par RubenI am running ffmpeg in Java. Using
p = Runtime.getRuntime().exec(command);
It is used to stream video through a red5 server.My problem is that ffmpeg requires "q" to be pressed in order to stop. How can I do that ? How can I send the q character to the running process so it will execute
p.destroy();
or something similar ? At the moment it runs forever until I kill the process in the task manager. I am using Windows7. -
How to configured ffmpeg rtmp output to allow failure ?
28 juillet 2015, par AdamI have an
avconv
command-line which outputs both a file on disk, and RTMP to a remote server.Upon startup, the video needs to be captured to disk - this is critical - however, the RTMP output may fail for any number of reasons, network goes down etc etc.
Is there a way I can configure the RTMP to be more resilient ? I.e. retry, but never kill the
avconv
process due to an RTMP failure ?I basically want the RTMP to come up whenever it can, but the disk capture should always be performed.