Recherche avancée

Médias (91)

Autres articles (33)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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 2013

    Puis-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
    avformat/movenc : allow Apple Lossless inside mp4
    

    The 'alac' identifier has been registered to ISO and thus towards
    ISOBMFF at the MP4 registration authority. The existing non-MOV
    mux mode matches the official ALAC-in-MP4 specification.

    • [DH] libavformat/movenc.c
  • LibAV FFMPEG How to get devices list ?

    23 septembre 2020, par FennecFix

    I looked up to documantation and found a very convenient AVInputFormat's funciton get_device_list . But the problem is I can't use it.

    


    Here's my short code snippet

    


    #include <qdebug>&#xA;&#xA;extern "C"&#xA;{&#xA;#include <libavformat></libavformat>avformat.h>&#xA;#include <libavdevice></libavdevice>avdevice.h>&#xA;}&#xA;&#xA;int main(int argc, char *argv[])&#xA;{&#xA;    avdevice_register_all();&#xA;&#xA;    AVFormatContext *formatContext = avformat_alloc_context();&#xA;&#xA;    AVInputFormat *inputFormat = av_find_input_format("dshow");&#xA;&#xA;    AVDeviceInfoList devices;&#xA;    inputFormat->get_device_list(formatContext, &amp;devices);&#xA;&#xA;    qDebug() &lt;&lt; devices.nb_devices;&#xA;&#xA;    avformat_free_context(formatContext);&#xA;&#xA;    return 0;&#xA;}&#xA;</qdebug>

    &#xA;

    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.

    &#xA;

  • H264 to jpeg FFMPEG decoding/encoding in C

    2 décembre 2023, par Vikram Kamath

    I'm trying to write a script in C to decode H264 frames and then encode them to jpeg/png format, frame-by-frame.

    &#xA;

    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 ?

    &#xA;