
Recherche avancée
Autres articles (108)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (14140)
-
Zoom and Moving based on audio information in FFMPEG
19 décembre 2019, par MattstirI recently wondered if it is possible to zoom or move things in FFMPEG based on an audio source.
I already played around with
complex filters
as they allow some audio visualization but didn’t really manage to move/zoom things based on sound. See good examples of complex filters used for audio visualization at : https://hhsprings.bitbucket.io/docs/programming/examples/ffmpeg/audio_visualization/index.htmlMy current situation is that i have multiple inputs which one of should react on sound/maybe even on special frequency’s.
-
Revision d8983f0dd7 : Global Motion block-based Uses block-based motion fields with ransac to find tr
12 février 2015, par Spencer EgartChanged Paths :
Modify /vp9/encoder/vp9_global_motion.c
Modify /vp9/encoder/vp9_global_motion.h
Modify /vp9/encoder/vp9_motionmodel.c
Modify /vp9/encoder/vp9_motionmodel.h
Global Motion block-basedUses block-based motion fields with ransac to find transformation between
frames.Change-Id : I6293fbb690cdad854a1140fb6af76b326abfe964
-
ffprobe : Rename Audio Service Type 'type' field to 'service_type'
2 août 2021, par Derek Buitenhuisffprobe : Rename Audio Service Type 'type' field to 'service_type'
677a030b26045acb50353d7954ae984ceefcd807 introduced more printable
side data types in ffprobe, however the Audio Service Type side data
'type' field that was introduced aliases an existing field of the same
name within the side data array, which can lead to JSON output like :"side_data_list" : [
"side_data_type" : "Audio Service Type",
"type" : 0
,
"side_data_type" : "Stereo 3D",
"type" : "side by side",
"inverted" : 1
]This, while technically valid JSON, is considered bad practice, since it
forces all downstream users to manually parse it and check all types ;
it makes simple deserialization impossible. Worse, in som loosely
type languages, it can lead to silent bugs if exising code assumed
it was a different type.As such, rename this second "type" field to "service_type".
Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>