Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (52)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (10185)

  • Running Live streaming of local user using ffmpeg at Web plateform

    23 décembre 2019, par Sneha Makwana

    I am using below command to stream my live desktop screen.

    ffmpeg -f x11grab -r 1 -loglevel panic -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i $DISPLAY -qscale 0 -f mpegts udp://192.168.3.151:1111

    udp ://192.168.3.151:1111 - this is my streaming URL

    I can see live streaming in the parole media player (in Linux platform), but I can’t see this in a cross-network (i.e from windows PC - in the same network)

    Is there any web platform so I can see my streaming from anywhere (either windows or linux) just using unique streaming URL or do I need to change my streaming command or method ?

    Any help is much appreciated

  • Live FLV streaming in C# WebApi

    20 janvier 2016, par Jake Rote

    Currently I have a working live stream using webapi. By receiving a flv stream directly from ffmpeg and sending it straight to the client using PushStreamContent. This works perfectly fine if the webpage is already open when the stream starts. The issue is when I open another page or refresh this page you can no longer view the stream (the stream is still being sent to the client fine). I think it is due to something missing from the start of the stream but I am not sure what to do. Any pointers would be greatly appreciated.

    Code for client reading stream

    public class VideosController : ApiController
    {
       public HttpResponseMessage Get()
       {
           var response = Request.CreateResponse();
           response.Content = new PushStreamContent(WriteToStream, new MediaTypeHeaderValue("video/x-flv"));

           return response;
       }

       private async Task WriteToStream( Stream arg1, HttpContent arg2, TransportContext arg3 )
       {
           //I think metadata needs to be written here but not sure how
           Startup.AddSubscriber( arg1 );
           await Task.Yield();
       }
    }

    Code for receiving stream and then sending to client

    while (true)
    {
       bytes = new byte[8024000];
       int bytesRec = handler.Receive(bytes);

       foreach (var subscriber in Startup.Subscribers.ToList())
       {
           var theSubscriber = subscriber;
           try
           {
               await theSubscriber.WriteAsync( bytes, 0, bytesRec );
           }
           catch
           {
               Startup.Subscribers.Remove(theSubscriber);
           }
       }
    }
  • live streaming with ffmpeg after processing video

    17 avril 2019, par Lotfus

    I have input videos that are received live then processed with ffmpeg then put in output to be live streamed. Where I am stuck is below.

    I am processing chunks of 10 seconds with ffmpeg in real time and I need to live stream these videos as I output them. I do not know how to proceed with ffmpeg, any clue ?