
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (59)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
(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 (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6096)
-
swresample/rematrix : treat 22.2 as 5.1 (back) when mixing
1er août 2020, par Jan Ekströmswresample/rematrix : treat 22.2 as 5.1 (back) when mixing
Only this sub-set of channels actually follows the bit mask order
in the official 22.2 channel mapping. Additionally, the 5.1 channels
are there for backwards compatibility with the previous system.This enables the utilization of 22.2 content until a proper down/up
matrix is added into swresample. -
H264 to jpeg FFMPEG decoding/encoding in C
2 décembre 2023, par Vikram KamathI'm trying to write a script in C to decode H264 frames and then encode them to jpeg/png format, frame-by-frame.


I'm going off of the tutorials given in the official decoder and encoder examples, but with a decoder type of AV_CODEC_ID_H264 and an encoder type AV_CODEC_ID_MJPEG, the files I am saving seem to be unreadable. Am I using the incorrect codecs ?


-
LibAV FFMPEG How to get devices list ?
23 septembre 2020, par FennecFixI looked up to documantation and found a very convenient
AVInputFormat
's funcitonget_device_list
. But the problem is I can't use it.

Here's my short code snippet


#include <qdebug>

extern "C"
{
#include <libavformat></libavformat>avformat.h>
#include <libavdevice></libavdevice>avdevice.h>
}

int main(int argc, char *argv[])
{
 avdevice_register_all();

 AVFormatContext *formatContext = avformat_alloc_context();

 AVInputFormat *inputFormat = av_find_input_format("dshow");

 AVDeviceInfoList devices;
 inputFormat->get_device_list(formatContext, &devices);

 qDebug() << devices.nb_devices;

 avformat_free_context(formatContext);

 return 0;
}
</qdebug>


And that code CRASHES when I'm trying to print
devices
. How do I use that function properly ? The official domentation has no examples using that function.