
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (94)
-
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 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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10612)
-
How to read ffmpeg response from java and use it to create a progress bar ?
7 septembre 2017, par shalkiI am working on creating a progress bar for ffmpeg in java. So for that I need to execute a command, then read all of the progress :
String[] command = {"gnome-terminal", "-x", "/bin/sh", "-c","ffmpeg -i /home/tmp/F.webm /home/tmp/converted1.mp4"};
Process process = Runtime.getRuntime().exec(command);This runs perfectly. However, I need to capture the all of the progress to make a progress bar. So how can I read that data from java ?
-
How to read ffmpeg response from java and use it to create a progress bar ?
1er février 2016, par shalkiI am working on creating a progress bar for ffmpeg in java. So for that I need to execute a command, then read all of the progress :
String[] command = {"gnome-terminal", "-x", "/bin/sh", "-c","ffmpeg -i /home/tmp/F.webm /home/tmp/converted1.mp4"};
Process process = Runtime.getRuntime().exec(command);This runs perfectly. However, I need to capture the all of the progress to make a progress bar. So how can I read that data from java ?
-
Flutter Desktop Images Sequences into Video
8 octobre 2019, par Hari AnugrahI am building a Flutter Desktop App (Mainly running for MacOs) that compile a series of images into a stop motion video
How do I achieve such goal ?
I’ve used ffmpeg via terminal to do this, but I want to achieve it using Flutter Desktop now.
I looked into https://pub.dev/packages/flutter_ffmpeg but seems like it doesn’t support desktop
I looked into dart:ffi but I don’t have enough experience to run ffmpeg command via C to begin with