
Recherche avancée
Autres articles (88)
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (9620)
-
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 ?
-
Android Adding watermark using FFMPEG after reading from resources
30 juillet 2015, par Muhammad AdilI need little help about adding watermark after reading it from the app reasources.. I have done this and worked quite awesome when I read directly from a specific folder. but now I want to make the idea generic and want to read it from resources then apply on video.
I am trying this to read watermark from drawableUri waterMark = Uri.parse("android.resource://com.app.videoedit/"+R.drawable.watermark);
My command is here
complexCommand =new String[] {"ffmpeg","-y" ,"-i", externalPath,"-i", outputAudioFile, "-strict","experimental",
"-filter_complex",
"[1:a]atempo=1.0[a1];" +
"movie="
+waterMark /////////////////////// here is that path
+" [watermark];" +
"[0:v][watermark] overlay=(main_w-overlay_w-10):(main_h-overlay_h-10) [outv]",
"-map", "[outv]", "-map", "[a1]",
"-s", "480x320","-r", "30", "-b", "15496k", "-vcodec", "mpeg4","-ab", "48000", "-ac", "2", "-ar", "22050",
"-shortest",PATH+"merged.mp4"}; -
how to add multiple gif watermakr in one video usign ffmpeg in android
2 décembre 2019, par p.jadhavi want to create video with multiple gif images as sticker .i have already use ffmpeg library for create normal video.
below code i have already use :
String[] cmd="-i",margefilePath,"-ignore_loop","0","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-i","unnamed.gif","-filter_complex","[0][1]overlay=x=W-w:y=0[tr] ;[tr][2]overlay=x=0:y=0[tl] ;[tl][3]overlay=x=W-w:y=H-h[br] ;[br][4]overlay=x=0:y=H-h[bl] ;[bl][5]overlay=x=(W-w)/2:y=(H-h)/2","out.mp4" ;
Please help me how can i add multiple gif images in video . Thanks in advance :) and sorry for bad english