
Recherche avancée
Autres articles (57)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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
Sur d’autres sites (10852)
-
avcodec/dv : Don't pretend initializing work chunks can fail
4 avril 2024, par Andreas Rheinhardt -
FFMPEG - How does it work expression in blend
30 juillet 2015, par ManelAcacioI am trying to do a crossfade between two videos (I want with many like we do with the slideshow, with an incremental file name, but want to try with 1 first).
I am using this command but I cant understand the expression :
ffmpeg -y -i 1.mp4 -i 2.mp4 -filter_complex "[1:v][0:v]blend=all_expr='A*(if(gte(T,3),1,T/3))+B*(1-(if(gte(T,3),1,T/3)))'" ultimo.mp4
The videos are 5 seconds each and I want that the last 1 or 2 seconds of the first video blend with the first or second second of the other video, like crossfading.
Anyone help me understand the expression and help me to achieve the result ?
Thank you very much.
-
Command work, but have a error when used by sh [on hold]
6 mai 2014, par DrakaSANI have this script :
extract.sh :
ffmpeg –i $1 –ss $2 –t $3 –c:v copy –c:a copy $4
If I type
ffmpeg –i full.mp4 –ss 114 –t 30 –c:v copy –c:a copy out.mp4
All go well. But if I try
sh extract.sh full.mp4 114 30 out.mp4
I get :
ffmpeg version 2.1 Copyright (c) 2000-2013 the FFmpeg developers
built on May 5 2014 11:41:48 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
configuration: --enable-gpl
libavutil 52. 48.100 / 52. 48.100
libavcodec 55. 39.100 / 55. 39.100
libavformat 55. 19.104 / 55. 19.104
libavdevice 55. 5.100 / 55. 5.100
libavfilter 3. 90.100 / 3. 90.100
libswscale 2. 5.101 / 2. 5.101
libswresample 0. 17.104 / 0. 17.104
libpostproc 52. 3.100 / 52. 3.100
[NULL @ 0x2a20b00] Unable to find a suitable output format for '–i'
–i: Invalid argumentWhat does sh do to the argument to make it unreadable in the script ?
EDIT :
user@domain:~/test$ sh extract.sh cdr.mp4 0 7 generique.mp4
ffmpeg –i cdr.mp4 –ss 0 –t 7 –c:v copy –c:a copy generique.mp4