
Recherche avancée
Autres articles (52)
-
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 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 (...) -
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 (7602)
-
ffmpeg multiple loglevel parameters
9 juillet 2013, par djangoFrom the document at here
ffmpeg has following loglevel parameters.Simple usage would be
"ffmpeg -loglevel error rest_of_ffmpeg_options"How can I use 3 loglevels together ?
I tried following but in this case error works while warning and fatal are ignored.
Inshort which ever is first after -loglevel is the only level working.-loglevel error warning fatal
-loglevel [repeat+]loglevel | -v [repeat+]loglevel
‘quiet’
Show nothing at all; be silent.
‘panic’
Only show fatal errors which could lead the process to crash, such as and assert failure. This is not currently used for anything.
‘fatal’
Only show fatal errors. These are errors after which the process absolutely cannot continue after.
‘error’
Show all errors, including ones which can be recovered from.
‘warning’
Show all warnings and errors. Any message related to possibly incorrect or unexpected events will be shown.
‘info’
Show informative messages during processing. This is in addition to warnings and errors. This is the default value.
‘verbose’
Same as info, except more verbose.
‘debug’
Show everything, including debugging information. -
ffmpeg start_time is negative
8 décembre 2016, par Alex BollbachI’m using ffmpeg to segment a video by start/end times. For example, I have a set of time [1], and I’d call ffmpeg 3 times here to create the three 2 second videos at times 0, 2, and 4.
My problem is that these times (which are correct) are not correctly segmenting the video. When I inspect the stats of the video with
ffprobe -i test.mov -show_format
, I noticedstart_time=-0.381044
. I also know that this seems to be caused by trimming a video in QuickTime to produce this video. In order to correct this, I must add (start + 0.381044) somewhere in my code, and the output is fine.So, why is the start_time set to a negative value by the quicktime trimming ? How can I set start_time=0, so my code can work without the + 0.381044 ?
-
ffmpeg start_time is negative
7 septembre 2017, par Alex BollbachI’m using ffmpeg to segment a video by start/end times. For example, I have a set of time [2], and I’d call ffmpeg 3 times here to create the three 2 second videos at times 0, 2, and 4.
My problem is that these times (which are correct) are not correctly segmenting the video. When I inspect the stats of the video with
ffprobe -i test.mov -show_format
, I noticedstart_time=-0.381044
. I also know that this seems to be caused by trimming a video in QuickTime to produce this video. In order to correct this, I must add (start + 0.381044) somewhere in my code, and the output is fine.So, why is the start_time set to a negative value by the quicktime trimming ? How can I set start_time=0, so my code can work without the + 0.381044 ?