
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (33)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (6347)
-
avformat/movenc : allow Apple Lossless inside mp4
20 novembre 2020, par Leo Izen -
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.

-
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 ?