
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (102)
-
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 (10346)
-
Use popen with a relative or absolute path on Windows in C
9 juillet 2017, par TiwentyI’m trying to a GUI wrapper for FFmpeg. I decided to build my program around the binary instead of the libraries. I want to call ffmpeg.exe in parallel to my program and get the console output instantly to parse it and show to the user a progress bar or something.
So I found
popen
which sends me the output when it comes so I can do what I want with it. But there are some problems with paths inpopen
on Windows.When I try
ffmpeg.exe -i TEST.mkv TEST.mp4
(when I’m in the folder of both ffmpeg.exe and my source file either from start or a chdir) it works well and I get what I want.But when I do
bin/ffmpeg.exe -i TEST.mkv TEST.mp4
(with the executable obviously being in the
bin
folder) it doesn’t find the commandbin
:'bin' is not recognized as an internal or external command, operable program or batch file.
It also doesn’t work with quotation marks around the path :
"bin/ffmpeg.exe" -i TEST.mkv TEST.mp4
But it does work with an absolute path and quotation marks :
"C:/PATH/TO/USER/FFmpeg GUI/bin/ffmpeg.exe" -i jellyfish.mkv jellyfish.mp4
.But it gets funnier.
If I use relative paths for the source and output, it works.
"C:/Users/tibtw_000/Raccourci/Code/FFmpeg GUI/bin/ffmpeg.exe" -i videos/jellyfish.mkv videos/jellyfish.mp4
But if I want to put an absolute path to my source or output files, it now doesn’t work.
"C:/PATH/TO/USER/FFmpeg GUI/bin/ffmpeg.exe" -i "C:/PATH/TO/USER/FFmpeg GUI/videos/jellyfish.mkv"
and now returns
'C:/PATH/TO/USER/FFmpeg' is not recognized as an internal or external command, operable program or batch file.
Now I’m starting to wonder if the space in my path is at fault. And it was. When I use
C:/PATH/TO/USER/FFmpegGUI/bin/ffmpeg.exe -i C:/PATH/TO/USER/FFmpegGUI/videos/jellyfish.mkv C:/PATH/TO/USER/FFmpegGUI/videos/jellyfish.mp4
in popen everything works perfectly.So what should I do ? Do I force the user to not put his files in paths with spaces ? Is there a special character that I can put instead of a normal space in the path to make
popen
understand what I want it to do ? -
Flutter | Retrieve ffprobe data
23 juin 2021, par YourLogarithmI'm using
flutter_ffmpeg
package, specifically I'm trying to retrieve information regarding the chapter marks from a.m4b
file which is an audiobook. By using this method :

_flutterFFmpeg.executeWithArguments(['-i', widget.book.path, '-print_format', 'json', '-show_chapters', '-loglevel', 'error']);



I was able to output this data as a JSON map in the console. The thing is, I need to use this data inside my application, is there a way to get access to those chapters as a variable using another approach, or maybe to access this data directly from the console log printed by the method shown earlier.


-
avutil : Softfloat implementation for IEEE 754 floating point
12 août 2016, par Umair Khan