
Recherche avancée
Autres articles (45)
-
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 -
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 (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (8815)
-
ffmpeg select() filter conditionally [closed]
18 août 2023, par Tomasz PlonkaI am trying to generate thumbnail strip image from a video file ; the number of thumbnails is constant. So I generate timestamps, dividing the video length by a number of frames, seeking for the frame using
-ss
option and extracting a frame using'select='eq(pict_type\,I)
filter to get a clear snapshot (this is a quite fast method). There is a problem at the end of a video, however : usually two or three last frames are simply not intraframes, so ffmpeg does not extract anything. Is there a way to writeselect()
filter conditionally, i.e. something like"select intraframe if it exists, otherwise get any frame from at a time provided"
?

-
fftools/ffmpeg_opt : Fix leak of options when parsing options fails
28 février 2020, par Andreas Rheinhardt -
mute audio if the volume *exceeds* a threshold
15 février 2023, par a1s2d3f4So, I have spent quite a bit of time looking for the answer but I get the exact opposite (something I already know how to do), namely, the audio below a certain threshold can get muted (can be done either with ffmpeg or sox).


What I need is for the command to search my audio for anything that exceeds -18dB and mute all such segments. (The reason for this is because I have a recording where I am playing an electric piano with the audio output being recorded directly through the cable, but I am also recording from two microphones what I am speaking - between my playing. When I am playing the keyboard, the mics pick up a lot of action noise which I want to mute, and that's easy to do because the channel that records my piano input has piano sounds at that point and that corresponds exactly with when I want the audio from my mics to be muted, or at least attenuated.)


Does anyone know if such a feat is possible ?
If it cannot be done with just one command, that's fine I'll try anything.