
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (104)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
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 (9323)
-
Get mime type for MediaSource.isTypeSupported
6 mars 2016, par GuigHow do I get the Mime type I need to pass to
MediaSource.isTypeSupported
with ffprobe/ffmpeg ?For instance, on my computer, that returns
true
:MediaSource.isTypeSupported('video/mp4; codecs="avc1.64000d,mp4a.40.2"')
while that doesn’t
MediaSource.isTypeSupported('video/mp4')
I’m not sure how to get what would correspond to the
avc1.64000d,mp4a.40.2
part for a given video. Here is a larger list of what this part may look like.ffprobe -show_streams -i video.mp4
returns a number of interesting informations, includingcodec_type=video
codec_time_base=1/40
codec_tag_string=avc1
codec_tag=0x31637661and
codec_type=audio
codec_time_base=1/48000
codec_tag_string=mp4a
codec_tag=0x6134706dI’m not sure I should go with
'video/mp4; codecs="avc1.0x31637661,mp4a.0x6134706d"'
since this returnsfalse
and I don’t know if it’s because it’s not the excepted argument or because the video is indeed not supported. -
fftools/ffmpeg_filter : do not assume av_buffersrc_get_nb_failed_requests()>0
7 mars 2024, par Anton Khirnovfftools/ffmpeg_filter : do not assume av_buffersrc_get_nb_failed_requests()>0
Apparently it can happen that avfilter_graph_request_oldest() returns
EAGAIN, yet av_buffersrc_get_nb_failed_requests() returns 0 for every
input.Works around #10795, though the root issue is most likely in the
scale2ref filter. -
How to xfade an accelerated stream into a stream of unchanged speed
9 mars 2024, par Matthias SimonHow to
xfade
one stream, that was speed up withsetpts
into another stream using ffmpeg ?

The natural approach would be :


ffmpeg
 -i a.mkv
 -i b.mkv
 -filter_complex "
 [0:v]setpts=0.2*(PTS-STARTPTS)[A_OUT];
 [A_OUT][1:v]xfade=duration=2:offset=10[out]" 
 -map '[out]'
 out.mkv



but this always results in a 5x speed up of the second stream during the 2sec transition time of xfade. In other words, during xfade, the PTS definition of the first stream is used for the second stream.