
Recherche avancée
Autres articles (27)
-
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 -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (8395)
-
How can I combine these two filters in ffmpeg
28 avril 2021, par Grow NoobsSo Im trying to overlay a video on top of an image and then add text over the image in ffmpeg I found that Im able to do all these separately but when combining it gives me the error of


Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_drawtext_2


The line of code :


ffmpeg -loop 1 -i overlay.png -re
-i overlay.mp4 
-filter_complex "[1]scale=1660:934[inner];[0][inner]overlay=0:0:shortest=1[out];
drawtext=fontsize=40:fontfile=FreeSerif.ttf:textfile=text.txt:x=(w-text_w)/2:y=(h-text_h)/2:reload=1"
-map "[out]" -map 1:a -c:a copy -y -s 1280x800 output.mp4



Can anyone help me with this ?


-
Revision 95a568b3a8 : Fix Neon convolve profiling When profiling, gprof can't distinguish between mat
22 octobre 2014, par Frank GalliganChanged Paths :
Modify /vp9/common/arm/neon/vp9_convolve8_avg_neon.asm
Modify /vp9/common/arm/neon/vp9_convolve8_neon.asm
Fix Neon convolve profilingWhen profiling, gprof can’t distinguish between matching labels in
different files.Change-Id : I56770df212ed314a0d8568071fa8157624ef1e8f
-
ffmpeg cannot find stream but stream does exist
10 avril 2023, par rayen saidaniima using ffmpeg to add text to the video the problem is this command works some times and some times it just dont feel like working


this the error that iam getting
Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_subtitles_0


this the command iam trying to run to add text to the video the srt file is always there when i run the commmand i tryed to run :

ffmpeg -i ./vid/${id}.3.mp4 -lavfi "subtitles=${id}.srt:force_style='Alignment=0,OutlineColor=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18,MarginL=100,Marginv=100'" -c:1 copy ./ready/${id}.4.mp4


this the function :


const addtext=async(id)=>{
 
 return new Promise(async(resolve,reject)=>{
 const command1 =await `ffmpeg -i ./vid/${id}.3.mp4 -lavfi "subtitles=${id}.srt:force_style='Alignment=0,OutlineColor=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18,MarginL=100,Marginv=100'" -c:1 copy ./ready/${id}.4.mp4 `;
 await exec(command1, (error, stdout, stderr) => {
 if (error) {
 reject(`stderr: ${error.message}`)
 }
 resolve(id)
 })
 }) 
}



this the error that iam getting
Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_subtitles_0


this the command iam trying to run to add text to the video the srt file is always there when i run the commmand i tryed to run :

ffmpeg -i ./vid/${id}.3.mp4 -lavfi "subtitles=${id}.srt:force_style='Alignment=0,OutlineColor=&H100000000,BorderStyle=3,Outline=1,Shadow=0,Fontsize=18,MarginL=100,Marginv=100'" -c:1 copy ./ready/${id}.4.mp4