
Recherche avancée
Médias (16)
-
#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
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (62)
-
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 -
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 (8949)
-
imc : Use correct position for flcoeffs2 calculation
10 juillet 2015, par Andreas Cadhalpunimc : Use correct position for flcoeffs2 calculation
flcoeffs2[pos] should be the log2 of flcoeffs1[pos].
flcoeffs1[0] can be 0 here, thus flcoeffs2[pos] gets set to -inf,
causing problems further down.This seems to have been copied from imc_decode_level_coefficients in
commit 4eb4bb3 without updating the position.Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
Signed-off-by : Luca Barbato <lu_zero@gentoo.org> -
FFMPEG Extract subtitles at webvtt format while keep position on the screen
30 septembre 2020, par Maxoui'm working on a project where I need to extract subtitles from video files and convert it to WEBVTT format. But when I extract and convert it with FFMPEG my webvtt files doesn't keep the position.


What I want


00:00:11.000 --> 00:00:13.000 align:start



What I get


00:00:11.000 --> 00:00:13.000



While when I test to extract at .ass files the position of the subtitles is keep.


To extract I use this command


ffmpeg -i {filename} -map 0:s:0 -muxdelay 0 -f webvtt subtitles.vtt



Thanks in advance


-
FFMPEG video Zoom to a Position X Y
24 mai 2020, par PilonasI want during zoom, zoom position is constantly changing as the video below






This is the code I tried. 
But it does not work continuously but only works for the first 3 seconds



Thank you for taking time for me



ffmpeg -y -i 1.mp4 -vf "scale=iw*4:ih*4,zoompan=z='if(lte(mod(on,125),50),zoom+0.5,zoom-0.5)':x='iw/2-iw*(1/2-88/100)*on/150-iw/zoom/3':y='ih/2-ih*(1/2-94/100)*on/150-ih/zoom/3':d=0" -c:v libx264 -s "1280x720" out.mp4