
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (10134)
-
Concatenating 2 videos using FFMPEG
27 avril 2015, par Rajpal SinghI am combining 2 videos in which one video has audio and second video has no audio.By doing this the output file will be corrupted. I am using the following command to Concatenating the 2 videos.
Command :
ffmpeg -i input_1 -i input_2 -filter_complex "[0:1] [0:0] [1:1] [1:0]
concat=n=2:v=1:a=1 [v] [a]" -map [v] -map [a] output_fileThanks,
-
FFMPEG script to merge multiple videos and a background image
3 février 2021, par BitBitI have 30 clips which are different in aspect ratio(like some videos are 10801920(they are vertical) and some are 1280720(horizontal aspect ratio videos). I want to merge all of them but also have a static background image that is of 1920x1080 aspect ratio. The video would be such that all the clips are concatenated but they have a background image(just like those tiktok compilation videos on youtube). Can someone please help me with this program ?


-
System.InvalidOperationException thrown when running as part of a WPF application. Xabe.FFmpeg
16 mars 2021, par S. O. JamesI have the following code which runs on a console application


string filePath = "C:\\Users\\**\\Desktop\\sample-mp4-file.mp4";
 string output1 = "C:\\Users\\**\\Desktop\\1.jpg";
 string output2 = "C:\\Users\\**\\Desktop\\2.jpg";
 var ms = new MultiSnapshotCommand(filePath);
 await ms.Add(TimeSpan.FromSeconds(20), output1);
 await ms.Add(TimeSpan.FromSeconds(20), output2);
 await ms.Invoke();



Which uses the following


public async Task Add(TimeSpan timestamp, string outputPath)
 {
 var conversion = await FFmpeg.Conversions.FromSnippet.Snapshot(filePath, outputPath, timestamp);
 conversionQueue.Enqueue(conversion);
 }



This executes fine and both snapshots are created when calling
Invoke()
.
However, when executing the same code running in an async method in response to a button click in a WPF scenario, the UI freezes, then a few moments laterException thrown: 'System.InvalidOperationException' in System.Diagnostics.Process.dll
is shown from the debugger output with no recovery.

The error seems to be occurring at
await FFmpeg.Conversions.FromSnippet.Snapshot(filePath, outputPath, timestamp);


Original - https://github.com/tomaszzmuda/Xabe.FFmpeg/issues/341


Edit


My project files https://github.com/Scharps/MP4ToImageConverter/tree/05beeb1cc359b654fb51a9695b5c20386c4d5fb6.
FFmpeg is required in Path system variable. File locations will need to be changed also