
Recherche avancée
Autres articles (65)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)
Sur d’autres sites (9534)
-
Why does FFmpeg not recognize this HEX color ?
13 mai 2021, par John MatleyI have a simple FFmpeg command (run from BAT file) which will overlay 2 bars of color onto a background image. The first color (FF0000) works great, but the second (212121) outputs a grey bar and not the HEX color I specified. Here's what I have so far :


ffmpeg-y -i background.png -f lavfi -i color=ff0000:size=1280x720,format=rgba -f lavfi -i color=212121:size=1280x720,format=rgba -filter_complex "[1:v]rotate=-30*PI/180:c=none:ow=rotw(iw):oh=roth(ih)[box];[0:v][box]overlay=500:200[corner];[corner][2:v]overlay=0:600[output]" -map "[output]" -frames:v 1 output.png



Any ideas ?


-
System.Diagnostics.Process calling FFMPEG fails with international character
1er septembre 2013, par Petter BrodinI'm using
System.Diagnostics.Process
to launch FFMPEG, and it works as intended on paths that only contain non-special characters.string strParam = "C:\myFolder\foo.png";
Process ffmpeg = new Process();
ffmpeg.StartInfo.UseShellExecute = false;
ffmpeg.StartInfo.RedirectStandardOutput = true;
ffmpeg.StartInfo.FileName = Path_FFMPEG;
ffmpeg.StartInfo.Arguments = strParam;
ffmpeg.Start();
ffmpeg.WaitForExit();The above example works perfectly, but if I use "c :\myFolder\føø.png" I get the following error message :
Could find no file with path 'C.\myFolder\f├©├©.png'
This looks like some kind of encoding error, but that's where my ideas stop.
-
ffmpeg concatenate 3 videos with crossfade
17 mars 2019, par Crikey MikeyIm trying to join 3 videos together with a crossfade effect.
I can get this working for 2 videos (sourced from stackoverflow but cant find the link) :
ffmpeg -y -i part1.mp4 -i part2.mp4 -f lavfi -i color=black:s=1920x1080 -filter_complex \
"[0:v]format=pix_fmts=yuva420p,fade=t=out:st=10:d=1:alpha=1,setpts=PTS-STARTPTS[va0]; \
[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+10/TB[va1]; \
[2:v]trim=duration=20[over]; \
[over][va0]overlay[over1]; \
[over1][va1]overlay=format=yuv420[outv]" \
-vcodec libx264 -map [outv] merged.mp4But cant work out how to make this work for 3 videos.
I don’t need any audio. Any ideas ?
Cheers,