Recherche avancée
Autres articles (65)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (12366)
-
Merge commit ’dc4d726bab59f349d366916ba01df16289e5c81f’
15 janvier 2014, par Michael Niedermayer -
FFMPEG - Concat videos with audio not working
9 février 2019, par S.Ti have a command that takes 2 movies, each one needs to be 2-3 times in a loop, and then show them in one video side by side.
my problem is that the loop is not working, i see the movies side by side (with both audio) which is great but only one time each movie, not in a loop. the concat command is not working...
the Command is :ffmpeg -i in1 -i in2 -filter_complex, \
"[0:v:0][0:a:0][0:v:0][0:a:0]concat=n=2:v=1:a=1[concat1v][concat1a];\
[concat1v]fifo,pad=width=iw+20:height=ih+20:x=10:y=10:color=green[a];\
[1:v:0][1:a:0][1:v:0][1:a:0][1:v:0][1:a:0]concat=n=3:v=1:a=1[concat2v]
[concat2a];\
[concat2v]fifo,pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];\
[a][b]hstack=inputs=2[video];\
[concat1a][concat2a]amerge=inputs=2,pan=stereo|FLcode>the log is at
https://pastebin.com/iy4n2MFZ -
how to provide login username and password to ffmpeg ?
11 septembre 2012, par Lynxhow can i provide username and password to ffmpeg to enable it to write data to some folder in ftp server ?
the folder is protected by password and if possible i dont want to remove that password. so, can i simply just pass the password to ffmpeg ? or is there any other solutions ?example of ffmpeg process to create thumbnail from video file
string thumbpath, thumbname, videofile;
videofile = "Video Source path";
thumbpath = "thumbnail path";
thumbname = thumbpath + "20120910160600.mjpeg";
string thumbargs = "-i \"" + videofile + "\" -vframes 1 -s 60*30 -ss 00:00:00 -f image2 \"" + thumbname + "\"";
Process process = new Process();
process.StartInfo.FileName = Server.MapPath("~\\ffmpeg\\bin\\ffmpeg.exe");
process.StartInfo.Arguments = thumbargs;
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.RedirectStandardInput = false;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.CreateNoWindow = false;
process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;New Learner,
Please guide me....