Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (77)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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) (...)

Sur d’autres sites (8687)

  • code that reads a video file encodes into Mpeg4

    19 février 2017, par H.NW

    I am looking for a code that reads a video file, let’s say a raw video, encodes into Mpeg4 with ability to select a I-frame, B-frame and P-frame, sends them to an IP address.

  • Reading a UDP stream by ffmpeg libavcodec

    3 avril 2021, par Blue Sky

    I want to read a video stream using ffmpeg libavcodec from a UDP address like udp ://:1500. I am using this code :

    



    char *url = "udp://:1500";
char *format = "mpegts";

AVInputFormat *fmt = NULL;
AVFormatContext *oc = NULL;

int res;

fmt = av_find_input_format(format);
res = avformat_open_input(&oc, url, fmt , NULL);
if(res!=0){
     printf("Could not open the stream\n");
     exit(1);
}


    



    But when I run this code, the program halts forever after executing res = avformat_open_input(&oc, url, fmt , NULL) ;

    



    Do you know what is the problem ?

    


  • Reading a UDP stream by ffmpeg libavcodec

    9 janvier 2014, par Blue Sky

    I want to read a video stream using ffmpeg libavcodec from a UDP address like udp ://:1500. I am using this code :

    char *url = "udp://:1500";
    char *format = "mpegts";

    AVInputFormat *fmt = NULL;
    AVFormatContext *oc = NULL;

    int res;

    fmt = av_find_input_format(format);
    res = avformat_open_input(&oc, url, fmt , NULL);
    if(res!=0){
        printf("Could not open the stream\n");
        exit(1);
    }

    But when I run this code, the program halts forever after executing res = avformat_open_input(&oc, url, fmt , NULL) ;

    Do you know what is the problem ?