
Recherche avancée
Autres articles (4)
-
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 (...) -
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (1716)
-
FFmpeg add #EXT-X-START to HLS m3u8 file
25 octobre 2017, par bosboyI am creating a HLS live streaming event playlist (m3u8 file and the ts segments) via FFmpeg. The segments at the beginning must not be removed from the playlist (it should contain all the segments). The HTML5 video element should start playing the video at the very beginning (by default it starts somewhere in the middle if the playlist contains several segments and the end tag is not contained at the end of the playlist file). To achieve that the video starts playing at the very beginning I need to add
#EXT-X-START:TIME-OFFSET=0
to the playlist file.Currently my FFmpeg command is the following :
ffmpeg -i videoSrc -map 0 -f hls -hls_time 10 -hls_list_size 0 -hls_playlist_type event -hls_allow_cache 0 -hls_segment_filename testSegmented%03d.ts testSegmentedHls.m3u8
.So my question is : How do I add
#EXT-X-START:TIME-OFFSET=0
to my HLS m3u8 playlist file using FFmpeg ? -
avfilter/vf_fade : fix start/duration max value
12 novembre 2018, par Mark Harris -
FFmpeg command to trim lavfi ignores start
12 janvier 2023, par abyesilyurtWhy doesn't this ffmpeg command generate 1 second video, but 5 seconds ?


If I modify
end
parameter of trim filter, the length changes, but it looks like ffmpeg is ignoring thestart
parameter.

ffmpeg -f lavfi -i color=blue@1:640x480:d=60,format=rgba -filter_complex "[0]trim=start=4.0:end=5.0[s0]" -map "[s0]" -y trim.mp4