
Recherche avancée
Autres articles (91)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10008)
-
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