
Recherche avancée
Autres articles (112)
-
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 -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (10707)
-
Converting video mp4 file to gif file in asp.net ?
14 juillet 2018, par JonnyI am developing an web app in asp.net where I want to convert mp4 file to animated gif file. I created a sample in C# console app to test my logic where it worked smoothly but when I tried to implement the same logic in asp.net it is not working.
I am using FFmpeg.exe to convert the videos.
Here is my code that executes on Button Click. Any help would be appreciated.try
{
//srcLink = Session["videoPath"].ToString();
System.Diagnostics.Process grabInfoProcess;
grabInfoProcess = new System.Diagnostics.Process();
grabInfoProcess.StartInfo.UseShellExecute = false;
grabInfoProcess.StartInfo.RedirectStandardOutput = true;
grabInfoProcess.StartInfo.RedirectStandardError = true;
grabInfoProcess.StartInfo.CreateNoWindow = true;
grabInfoProcess.StartInfo.FileName = Request.PhysicalApplicationPath + "FFmpeg\\ffmpeg.exe";
grabInfoProcess.StartInfo.Arguments = "-ss 00:00:01 -t 00:00:15" + " -i " + Request.PhysicalApplicationPath + "videos\\test2.mp4" + " " + Request.PhysicalApplicationPath + "DestVideos\\animated.gif";
//ffmpeg - i source_video.avi animated_gif.gif
grabInfoProcess.Start();
string output = grabInfoProcess.StandardOutput.ReadToEnd();
string newoutput = grabInfoProcess.StandardError.ReadToEnd();
grabInfoProcess.WaitForExit();
}
catch (Exception ex)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "scriptkey", "alert('" + ex.Message.ToString() + "');");
} -
How to change part of a MKV video with another MKV video without re-encode and without changing audio file of the primary MKV file [closed]
10 octobre 2020, par MonsterMMORPGI have a lecture that I have recorded with using OBS studio and my microphone


But I want to replace certain part of that video with another video without re-encoding or touching the audio


The another video is also recorded with OBS studio with the same settings


If encoding is necessary I accept that as well


So what would be the appropriate
ffmpeg
command ?

Here example file definitions and durations to give more clear example


- 

-
a.mkv
: 77 minutes long

-
b.mkv
: same format and 2 minutes long

-
c.mkv
: I want to replace 00.23.00 - 00.25.00 part ofa.mkv
withb.mkv
without changing the audio file ofa.mkv










Is this possible without encoding or with re-encoding ?


So can you provide an example code with some definitions


How do we define starting position, the durations ? I found some examples on the Internet but they were not definitive enough


Answer to this question : https://superuser.com/questions/1591877/how-to-change-part-of-a-mkv-video-with-another-mkv-video-without-re-encode-and-w


-
-
How can I convert WebM file to WebP file ?
24 août 2020, par c-anI tried it with ffmpeg.


ffmpeg input.webm output.webp



input.webm
contains transparent background and But the alpha channel becomes white in webp. I think that means alpha channel doesn't come together.

I extracted frames with this command :


ffmpeg -i input.xxx -c:v libwebp output_%03d.webp



And it also gives me webp files with white background.


How can I convert it properly with alpha channel ? OR should I convert it from other format(extension) ?