Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (90)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (11438)

  • Can I use ffserver to stream multiple video files from multiple users ?

    4 août 2017, par zeroh7

    First, forgive me for not having good English.

    I learned about ffmpeg and I’m studying it.

    I have a question, but I can not find any related documents on the Internet.

    Here are my questions.

    1. Can I use ffserver to stream multiple video files from multiple users ?

    2. Can I use the ffmpeg command to generate and destroy a feed in server.conf

    please : )

  • Ignore Connection Error on Multiple Rtsp Stream in FFmpeg

    17 décembre 2022, par Onur Külekci

    Sorry for my bad English. My problem is ;
ffmpeg command closes completely when one of the streams cannot be reached while multicasting. when it can't reach a single rtsp address, how can it ignore it and continue broadcasting from the others ?

    


    Example ;

    


    ffmpeg -i rtsp://5.63.151.4:443/atv/atv2 -map 0 c:\atv.flv -i rtsp://live.sabah.com.tr:443/ahaber/ahaber3 -map 1 c:\ahaber.flv


    


    if it can't reach the 2nd link, keep playing the first one

    


    Thank you !

    


  • AVFormatContext with alsa,v4l2 to output AVFormatContext

    8 mars 2017, par GeneralN00bs

    Read first : I’m a new guy with Stack Overflow, and poor English, so please excuse my English, which is really bad.

    I’m trying to do web streaming with open input device ; audio, video devices to HTML5 video.

    for example, this project using ffmpeg command to like this :

    ffmpeg -f v4l2 -i <video devices="devices"> -f alsa -i <audio devices="devices"> -f mpegts -codec:v mpeg1video -b:v 800k -framerate 24 -codec:a mp2 -b:a 128k http://localhost:8082/secret
    </audio></video>

    Here’s the main question : I can open 2 avformatcontext with C language like this :

    AVFormatContext* get_ctx(const char* dev,const char* driver,AVDictionary *options)
    {
         AVFormatContext *ictx = avformat_alloc_context();
         AVInputFormat *fmt = NULL;

         //get input format.
         fmt = av_find_input_format(driver);
         //if have options
         if(options){
             //open device with options
             if(avformat_open_input(&amp;ictx,dev,fmt,&amp;options)&lt;0){
                 printf("get device with options failed.\n");
                 return NULL;
             }
             //find stream info.
             if(avformat_find_stream_info(ictx,&amp;options)&lt;0){
                 printf("get stream info with options failed.\n");
                 return NULL;
             }
         //not have options.
         }else{
             if(avformat_open_input(&amp;ictx,dev,fmt,NULL)&lt;0){
                 printf("get device failed.\n");
                 return NULL;
             }
             if(avformat_find_stream_info(ictx,NULL)&lt;0){
                 printf("get stream info failed.\n");
                 return NULL;
             }
         }
         av_dump_format(ictx,0,adev,0);
         return ictx;
     }

    Well, get v4l2 and alsa devices successfully using function above. but
    I can’t figure it out (2 input avformatcontext) to output avformatcontext.
    Any idea how can I am muxing 2 avformatcontext to output avformatcontext ?