Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (61)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (11431)

  • Why cant I feed FFServer(Linux) from FFMpeg (Windows) ?

    14 mars 2018, par Milen

    What I want to do is to stream a (only)video file from Windows 10 using RTSP. First, I tried to use webm HTTP instead. I found that ffserver is not avaiable for Windows, so I configured and run ffserver on a Linux machine (Ubuntu 16.04). Then, I downloaded pre-built ffmpeg for Windows x64 and run a ffmpeg command to feed my rtsp server. The fact is that the command didnt work on my Windows machine

    The same ffmpeg command works well if I run it in my Linux machine.

    The details are descripted below :

    ffserver.conf file :

    HTTPPort 8090                    
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 10000            

    CustomLog -
    NoDaemon                      

    <feed>              
      File ./feed1.ffm        
      FileMaxSize 1G          
      ACL allow 127.0.0.1 192.168.0.131 #Windows machine IP address
    </feed>

    <stream>        
      Feed feed1.ffm  
      Format webm

      # Video settings
      VideoCodec libvpx
      VideoSize 720x576    
      VideoFrameRate 25  
      AVOptionVideo flags +global_header

      AVOptionVideo cpu-used 0
      AVOptionVideo qmin 10
      AVOptionVideo qmax 42
      AVOptionVideo quality good
      NoAudio

      PreRoll 15
      StartSendOnKey
      VideoBitRate 400        
    </stream>

    <stream>
      Format status

      ACL allow localhost
      ACL allow 192.168.0.0 192.168.255.255
      ACL allow 192.168.0.131 # my windows machine ip
    </stream>

    <redirect>
      URL http://www.ffmpeg.org/
    </redirect>

    ffmpeg command to feed server :

    ffmpeg -i video.avi http://192.168.0.119:8090/feed1.ffm

    Error thrown by Windows command line :

    Unable to find a suitable output format for 'http://192.168.0.119:8090/feed1.ffm' .
    http://192.168.0.119:8090/feed1.ffm : Invalid argument.

    Someone told me that Windows newest version of FFMpeg doesnt support ffm, Is that true ? I couldnt find a different format example.

  • FFSERVER streaming to any network

    7 février 2012, par user1191644

    Is there some way to stream a media file using ffserver to any network from a local network as my ffserver is configured on subnet machine.

    Right now I have it working only machines on the LAN (connected to my network) can view the file using http://localhost:8090/stream.mjpg , but I want people from the outside or any network also to be able to access it if they provide my machine address. Can anybody provide me some ideas on this.

    Thanks !

  • Why UDP port fails only in Docker ?

    11 juillet 2019, par Sagi Mann

    I’ve got the following docker that streams out some sample sine wav via UDP port 1234 :

    from ubuntu
    RUN apt update
    RUN apt install -y ffmpeg
    EXPOSE 1234/udp
    CMD ffmpeg -re -f lavfi -i aevalsrc="sin(400*2*PI*t)" -ar 8000 -f mulaw -f rtp rtp://localhost:1234

    I run the container using :

    docker run -p 127.0.0.1:1234:1234/udp xxxx

    Now I try to open VLC and play that stream from my host machine using the stream URL rtp ://@:1234 as instructed by VLC. It plays nothing. Silence. However, if I run the same ffmpeg cmd from the host machine, it works and I can hear the sample.

    Any ideas what’s going on ?