
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (107)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 ) (...)
Sur d’autres sites (14424)
-
ffmpeg audio plot wave form
1er avril 2016, par HarisI need to plot wave form of audio as explained here ffmpeg - Can I draw an audio channel as an image ?, I found that some command line option for plotting to image, but my requirement is do from c++ code and draw live waveform on UI. I am able to decode the audio data successfully, but no idea how the data is stored in
AVFrame
extended_data
pointer. The audio can be either stereo or mono.AVFrame *frame=av_frame_alloc();
while(av_read_frame(container,&packet)>=0)
{
int len=avcodec_decode_audio4(ctx,frame,&frameFinished,&packet);
frame->extended_data //how data stored inside the pointer
........................
} -
Using ffmpeg apply filters to a Video memory stream. Is it possible ?
1er octobre 2015, par Faisal MqI have a requirement where I will be downloading my Video file data present on an Azure BLOB. I will get this Video file data in the form of a MemoryStream.
Is there any way that using ffmpeg I can process this MemoryStream e.g removing audio, blurring video etc ?
If its not possible then I will have to download the BLOB file somewhere on my Server in the form of .mp4 and then do the processing by ffmpeg. But actually I want to avoid this step of creating file on hard disk downloaded via MemoryStream.
Here is the sample/pseudo code :
public void ProcessVideoFile(string containerName, string blobURI)
{
CloudBlockBlob blob = GetBlockBlobReference(containerName, blobURI);
using (var memStream = new MemoryStream())
{
blob.DownloadToStream(memStream);
// Process this memStream using ffmpeg for different filters e.g blurring, remove audio etc.
// ......................
}
} -
vaapi : fix usage of invalid buffer ids.
28 juillet 2015, par Gwenole Beauchesnevaapi : fix usage of invalid buffer ids.
Invalid buffer ids are defined by VA_INVALID_ID. Use that through out
vaapi_*.c support files now that we have private data initialized and
managed by libavcodec. Previously, the only requirement for the public
vaapi_context struct was to be zero-initialized.This fixes support for 3rdparty VA drivers that strictly conform to
the API whereby an invalid buffer id is VA_INVALID_ID and the first
valid buffer id can actually be zero.Signed-off-by : Gwenole Beauchesne <gwenole.beauchesne@intel.com>