
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (52)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (6549)
-
ffmpeg - read imagefolder and add Watermark
31 juillet 2015, par dazzafactRightnow iam using successful this command to read an imagefolder and create a videofile
ffmpeg -f image2 -pattern_type glob -i 'image2/in*.png'
-vf fps=25/1 -s 720x576 -b 1000k out.flv -timeout 3But i also wanna add a Watermark to the Video, but it will not work with this :
ffmpeg -f image2 -pattern_type glob -i 'image2/in*.png'
-vf fps=25/1 -s 720x576 -i logo_fff.png -filter_complex
"overlay=10:main_h-overlay_h-10"-b 1000k out.flvThe command to create the watermark separtly 100% works with a Videofile but not with an imagefolder ?
ffmpeg -i in.flv -s 720x576 -i logo_fff.png -b 1000k
-filter_complex "overlay=10:main_h-overlay_h-10" out.flvWhere is the mistake ?
-
how to speed up video and add watermark using ffmpeg
30 octobre 2017, par 1234567How can we speed up video and add watermark using ffmpeg
for speed up video we have this command
ffmpeg -i input.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mp4
for water mark we use
"-y", "-i", j, "-i", image1, "-i", image2, "-i", image3, "-filter_complex",
"[0:v][1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
"[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
"[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
"-c:v","libx264", "-preset", "ultrafast", out;how can we merge bot commands I have various commands
like this""-y", "-i", j, "-i", image2, "-i", image2, "-i", image2, "-filter_complex",
"[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" +
"[1:v] overlay=0:0:enable='between(t,1,2)'[tmp];" +
"[tmp][2:v] overlay=0:0:enable='between(t,5,7)'[tmp];"+
"[tmp][3:v] overlay=0:0:enable='between(t,9,11)'",
"-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4",
"-preset", "ultrafast", out"how can we speed video and add watermark
the error that i get is
[AVFilterGraph @ 0xac59c530] No output pad can be associated to link label '1:v'.
Error initializing complex filters. -
ffmpeg error At least one output file must be specified
29 novembre 2022, par cedricxmy code :
ffmpeg -i "C :\Users\xxxxxxx\Desktop\aaaaaa\a.mp4" -frames 1 -vf "drawtext="fontsize=60:fontcolor=yellow select=not(mod(n,18)),scale=200:100,tile=15x48" "C :\Users\xxxxxxx\Desktop\aaaaaa\a.png"


i got this error :
At least one output file must be specified


where is the problem ?


command is get error and i need fix