
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (19)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (4542)
-
Revision 89090d8046 : Don't allocate dqcoeff in MACROBLOCKD. The encoder gets its dqcoeff from the co
8 juillet 2015, par Alex ConverseChanged Paths :
Modify /vp9/common/vp9_blockd.h
Modify /vp9/common/vp9_onyxc_int.h
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/decoder/vp9_decoder.h
Modify /vp9/encoder/vp9_encoder.c
Don’t allocate dqcoeff in MACROBLOCKD.The encoder gets its dqcoeff from the context tree. In the decoder move
it to directly after MACROBLOCKD.Change-Id : I46c9b76f26956a360d17de0b26ecb994dae34ecb
-
How to change bit rate and resolution of video using ffmpeg library
28 novembre 2018, par samsixI am writing an application to change the bit rate and resolution of a local video file (no audio) in Qt and C++ (usig ffmpeg C library). There are some examples on ffmpeg github repo, but none of them has anything about bit rate or resolution changing.
I am confused on how to proceed with it. Is it done using libavcodec, libavdevice, libavfilter... ?
Please guide me or share links to any examples
-
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