
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (60)
-
MediaSPIP : Modification des droits de création d’objets et de publication définitive
11 novembre 2010, parPar défaut, MediaSPIP permet de créer 5 types d’objets.
Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...) -
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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5618)
-
In a video, how to smooth out pan motion with ffmpeg
24 avril 2015, par MonkeyBonkeySo this is not an image-stabilization question. I’d like to smooth out panning motion in an existing video so that if a video has pauses or slow and fast pans - it all gets evened out into one nice smooth pan at constant speed.
Is there a ffmpeg filter or addon that does this ? Is there a technical term for this kind of filtering ?
Could I use some sort of scene detection filter to split on keyframes then remerge the scenes into one using some sort of upconverting to smooth out the fps ?
-
ffmpeg fmp4 segment encryption
12 juillet 2022, par V OI'm searching for a solution to protect HLS streams using DRM/AES encryption.


Currently, it seems that this is only working with .ts segments not with .m4s segments and .ts files again don't work with HEVC / 4k HDR content, so it seems I'm 100% stuck at this point.


There is also a report from another user (4 years ago) with exactly the same issue : https://trac.ffmpeg.org/ticket/7138
Is there any kind of workaround ? Maybe outside of ffmpeg ?


-
Passing an input stream to ffmpeg through Runtime.exec()
29 juillet 2016, par IngloniasI want to use ffmpeg to read a video that gets streamed into a Java
InputStream
of some kind, without having to write it to a file, and then use ffmpeg to finalize the processing of a file, hopefully via its standard input.I want to do this with the
ProcessBuilder
orProcess
objects. Is this possible to do, and if so, how ? If it’s not possible with these objects, would it be possible to do so with an ffmpeg wrapper ?