
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (43)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (10860)
-
How to use libraries ".lib" and ".a" files in gcc
16 décembre 2013, par Blue SkyI have a simple C code that uses some functions of
libavcodec
inffmpeg
. I try to compile the code withgcc
(in Windows using mingw) as follows :gcc -o mycode mycode.c
but I get a lot of errors like "undefined reference to av_free". I know that these functions are defined in the libraries of ffmpeg. I do access to files like
avcodec.lib
andlibavcodec.dll.a
but I don't know how to use them with gcc so that I can compile and make my file. Any idea how to solve this problem ? -
What does the "struct AVCodec *codec" in "struct AVCodecContext" represent ?
7 juin 2013, par AppyI am using FFMpeg libraries in C/C++ to develop a media player .
This source uses the following code to find the decoder of a video stream in a file :pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
,where pCodecCtx is the pointer to the Codec Context of the video stream and pCodec is a pointer to AVCodec which was initialised to NULL .
If we have to explicitly find the decoder , then what is the
struct AVCodec *codec
found instruct AVCodecContext
? This is defined here . Can someone please help me understand it's use . -
What does the "struct AVCodec *codec" in "struct AVCodecContext" represent ?
7 mai 2019, par jsp99I am using FFMpeg libraries in C/C++ to develop a media player .
This source uses the following code to find the decoder of a video stream in a file :pCodec=avcodec_find_decoder(pCodecCtx->codec_id);
,where pCodecCtx is the pointer to the Codec Context of the video stream and pCodec is a pointer to AVCodec which was initialised to NULL .
If we have to explicitly find the decoder , then what is the
struct AVCodec *codec
found instruct AVCodecContext
? This is defined here . Can someone please help me understand it’s use .