
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (87)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (7965)
-
Additionals : Brazilian CPF number
11 novembre 2014, par gororkAdditionals : Brazilian CPF number
Closes #1310
-
How to get frame number of Blackdetect result ?
16 janvier 2023, par JustNoobish619I am attempting to get the frame number of a black detect result. For instance, on Blackdetect I get two results that display a start time, end time and duration, how do I get the frame number of the start time ?


FPS is 59.94


Here's my command I'm working with to get my blackdetect :


ffmpeg –i e1.mp4 –vf “blackdetect=d=0:pix_th=0.40,” –an –f null -



It results in (the start time value is the frame's timestamp (ffmpeg wiki says))


[blackdetect @ 000001f4d022c900] black_start:1.06773 black_end:1.08442 black_duration:0.0166833
[blackdetect @ 000001f4d022c900] black_start:1.41808 black_end:1.43477 black_duration:0.0166833



When I append
-n
to it to hopefully display the frame number however, it spits out 3 entries of random frame numbers that aren't even remotely close to the blackdetect frame number really is

ffmpeg –i e1.mov –vf “blackdetect=d=0:pix_th=0.40” -n –an –f null - 2>showinfo.log



How can I get the frame number of the start time of blackdetect ?


-
avformat/webmdashenc : Avoid allocation for parsing a number
18 mai 2020, par Andreas Rheinhardtavformat/webmdashenc : Avoid allocation for parsing a number
In order to parse a number from a string, the WebM DASH manifest muxer
would duplicate (via heap-allocation) the part of the string that
contains the number, then read the number via atoi() and then free the
duplicate again. This has been replaced by simply using strtoll() (which
in contrast to atoi() has defined behaviour when the number is not
representable).Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>