Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (78)

  • 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" (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (9066)

  • FFMPEG Stream series of pictures over network

    11 septembre 2015, par Commodore63

    I would like to generate video frames on one computer and stream them to another computer to be manipulated and displayed. I want to do this programatically, because the source images are generated from a 3rd party c++ library and on the receiving end I want to manipulate the images before displaying them. I have been pulling my hair out trying FFMPEG. I got the encoding example to work, but am not sure what to do after that. I have just about googled everything i could think of but cannot figure out which FFMPEG library/function to call once I have a stuffed AVPacket. It seems that I need to use either the AVIO or AVFormat or the muxer but it is not clear how to initialize and get them working. I would appreciate any help you could offer.

    To provide some context I have the example ’decoding_encoding.c’ which is provided with ffmpeg working. Here is the spot that I am struggling with :

           /* encode the image */
           ret = avcodec_encode_video2(c, &pkt, frame, &got_output);
           if (ret < 0) {
               fprintf(stderr, "Error encoding frame\n");
               exit(1);
           }

           if (got_output) {
               printf("Write frame %3d (size=%5d)\n", i, pkt.size);
               fwrite(pkt.data, 1, pkt.size, f);

               //
               // instead of writing to a file, i want to stream to a network
               // What do I need to do with pkt to do that?
               //
               av_free_packet(&pkt);
           }

    Most documentation (and the Dranger tutorial) focus on reading and writing files. I do not need to use a file. I want to stream video over a network. It seems like I need AVFormat and AVio but I jsut can’t figure out how they fit together.

  • libavformat/network : fix function duplication

    6 janvier 2018, par Rostislav Pehlivanov
    libavformat/network : fix function duplication
    

    Since the function used to be exposed for ffserver's sake, it was renamed
    to the same name as a system's aton function which caused a collision.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavformat/os_support.c
  • configure : don’t enable any tls protocol if network is disabled

    1er juin 2015, par James Almer
    configure : don’t enable any tls protocol if network is disabled
    

    This was a regression introduced with 4a006b9eb7e7d736fd00e6045b5612978ef6404b.

    Reviewed-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] configure