
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (7155)
-
Avoid auto-inserted scale filter
13 mars 2017, par CryGuyUsing the LibAv libraries, I’ve built a filter graph by calling
avfilter_graph_parse2
. This works well.
The string passed is"buffer=(several args),eq=gamma=5,buffersink"
The pixel format at the beginning and the end of the queue is yuv420p. Everything’s fine.
Now I wanted the output pixel format to be BGRA. I inserted the "format" filter :
"buffer=(several args),eq=gamma=5,format=pix_fmts=bgra,buffersink"
This works well, either.
However, I found out that a "scale" filter is auto-inserted between the "eq" filter and the "format" filter. I do know from the documentation that this can happen ("Libavfilter will automatically insert scale filters where format conversion is required."), but I don’t think it’s required in this case. This way, the scale filter already performs the pixel format conversion (yuv420p->bgra), and consequently makes the format filter useless.
So, anybody’s able to see why the scale filter gets auto-inserted ?
-
ffmpeg max segment files (auto deleted oldest file)
15 mai 2017, par Bino OetomoLets say I have this ffmpeg command
ffmpeg -i rtsp://10.2.2.19/live/ch01_0 -c copy -map 0 -f segment -segment_time 300 -segment_atclocktime 1 -segment_format mp4 "cam01_%Y-%m%-d_%H-%M-%S.mp4"
If currently I got 5 files :
- cam01_2017-05-01_12-00-00.mp4
- cam01_2017-05-01_12-05-00.mp4
- cam01_2017-05-01_12-10-00.mp4
- cam01_2017-05-01_12-15-00.mp4
- cam01_2017-05-01_12-20-00.mp4
the next file name will cam01_2017-05-01_12-25-00.mp4, and my directory will contain 6 files :
- cam01_2017-05-01_12-00-00.mp4
- cam01_2017-05-01_12-05-00.mp4
- cam01_2017-05-01_12-10-00.mp4
- cam01_2017-05-01_12-15-00.mp4
- cam01_2017-05-01_12-20-00.mp4
- cam01_2017-05-01_12-25-00.mp4
My question is, is there any switch/option that make ffmpeg automaticaly limit number of segment to 5 so my directory will contain :
- cam01_2017-05-01_12-05-00.mp4
- cam01_2017-05-01_12-10-00.mp4
- cam01_2017-05-01_12-15-00.mp4
- cam01_2017-05-01_12-20-00.mp4
- cam01_2017-05-01_12-25-00.mp4
(oldest file ’cam01_2017-05-01_12-00-00.mp4’ auto deleted)
-
avfilter/vf_overlay : add auto format mode
24 juin 2017, par Paul B Mahol