
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (75)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8116)
-
How to stop ffmpeg that runs through java process
28 avril 2021, 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 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. -
ffmpeg start/stop rtmp streams on the fly
14 août 2020, par almosnowI have a media stream that I transmit as rtmp to several endpoints, for this I use ffmpeg and the
tee
pseudo-format.

Sometimes one of the sites may come online (or go offline) and I would like to start/stop streaming to it accordingly.


Restarting ffmpeg is not an optimal choice as all the streams that are currently being transmitted would get cut.


Is there a way to add/remove targets to
tee
on the fly ? Or a way to achieve a similar thing with ffmpeg and tools from a linux environment ? Perhaps there's something that already does this with rtmp streams.