
Recherche avancée
Autres articles (69)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (9661)
-
electronicarts : demux alpha stream
25 juin 2015, par Peter Rosselectronicarts : demux alpha stream
Electronic Arts VP6 files may contain two video streams : one for the
primary video stream and another for the alpha mask. The file format
uses identical data structures for both streams.Signed-off-by : Peter Ross <pross@xvid.org>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
7 avril 2024, par Andreas Rheinhardtavcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
It is perfectly legal for users to use a custom layout
that is equivalent to a supported native one.
In this case the union in AVChannelLayout is not an uint64_t mask,
but a pointer to a custom map.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
ffmpeg with partial motion detection
2 mars 2021, par SilentfuryI have video files from a static surveillance camera and I try to re-encode them using some sort of motion detection filter (keeping the movements, droping the stills) in order to save space and play time.


I have successfully tried the two below filter options but it still feels not good enough. :


- 

- mpdecimate e.g. -vf "mpdecimate=hi=6480:lo=6420:frac=0.1,setpts=N/(15*TB)"
- select (e.g. -vf "select=gt(scene,0.4)")






The main problem is a moving bush in the camera view, that I would like to exclude from the motion detection.


Is there other/better ways of applying motion detection (and stills dropping) to ffmpeg ?
Is there any way to mask areas of the video that will be ignored in the above mentioned (or any other) motion detection filter/method ?


Many thanks in advance !


Edit :
in the mean time I found this excellent answer from Gyan


I am testing this now but would still appreciate other ideas