
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (14190)
-
ffmpeg - alternative to AVCodecContext::refcounted_frames ?
18 mars 2014, par AsikWe are using an outdated version of AVCodec which does not contain the ref-counted frames feature implemented via
AVCodecContext::refcounted_frames
. Basically, we want to prevent AVCodec from re-using a buffer until we are done with it, which could be at any arbitrary point in the future (and not necessarily before the nextavcodec_decode_frame2
).Using a different
AVFrame
on each call to decode doesn't do the trick, because AVCodec uses the same buffers internally anyway (differentAVFrames
may point to the same data).Is there a way to do this without using the new features introduced with
AVCodecContext::refcounted_frames
? -
How do I download the past x minutes of an ongoing livestream with FFMPEG and Youtube-dl
8 août 2018, par Arno van der WeijdenI’m trying to download the last 2 minutes of a livestream upon a certain trigger.
However this trigger triggers just after the thing I want to record.I tried the following but that doesn’t seem to work. I can only download what is currently streaming or will stream in the near future.
ffmpeg -i (output of youtube-dl -g youtube-live-stream-url) -c:v copy -c:a aac -ss -00:02:00 -strict experimental -t 00:02:00 last2minutes.mp4
Does anyone have an idea how I could set a negative start time ?
-
Every 27 seconds immediately appear around 3 seconds black
23 juin 2018, par MonsoI want every 27 seconds. appears a black space of 3 seconds and it repeats to the end. Example 0:27 0:54 1:21 until the end of the video .... here are 2 code I used but the second code does not work. The 1st code it automatically blurs the population, I want it not to fade itself. that i want it immediately black
.please help me finish itCode 1
ffmpeg -i input.mp4 -loop 1 -i logo.png -filter_complex "[1]trim=0:24,fade=in:st=0:d=1:alpha=1,fade=out:st=4:d=1:alpha=1,loop=999:750:0,setpts=N/25/TB[w];[0][w]overlay=shortest=1" output.mp4
Code 2
ffmpeg -i input.mp4 -vf "select='lt(mod(t,30),27)',setpts=N/FRAME_RATE/TB" output.mp4