Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (4377)

  • Start RTSP server on Linux with USB Web-cam source [on hold]

    4 juin 2019, par NecroFillin

    I would like to write a script that runs the RTSP server on a PC with Linux, using ffmpeg, gstreamer, or other media framework.

    • Video source : Web camera connected via USB to PC.
    • Provide the ability to view the video stream using VLC or another RTSP client.
    • Dump traffic using tcpdump

    What have I done for now :
    streamed the USB camera to a rtsp server by using ffmpeg :

    ffmpeg -f v4l2 -input_format h264 -timestamps abs -video_size hd720 -i /dev/video0 -c:v copy -c:a none -f rtsp rtsp://10.52.9.104:45002/cameraTx1

    What to do next ? Is it possible to make some bush-script for it ?

  • which port ffmpeg is using for streaming to a rtmp(or rtmps) server running in a cloud location

    12 janvier 2023, par elsa

    I am working with ffmpeg and rtmp camera streaming in a constrained environment.
I have rtmp server running on a cloud (say eg. 11.23.123.13 in port 1935 for rtmp & 4936 for rtmps).
However is there any port on sending end , i should request team to open to avoid blocking the stream sending from device end to rtmp server end(camera streaming end). Only port 443 is open in device where camera connected and ffmpeg commands are running.

    


    It would be helpful if somebody give insights on how network is connecting from ffmpeg encoder to rtmp server

    


      

    1. Getting the details how network is connecting from ffmpeg encoder to rtmp server ?
    2. 


    3. Which ports to be open in device end(where camera connecting) to start ffmpeg streaming to rtmp server running on cloud ?
    4. 


    


  • Windows 10 server ffmpeg configuration

    10 octobre 2019, par Aakash

    FF-MPEG Run-time execution in java not running in windows 10 server.I Have test with my system its working perfectly but in windows 10 server not works.i have also gives the environment variable path in windows 10 but problem is still. my code is following

    I Have try all the possible ways to running ff-mpeg command in run-time java environment but error still continues in windows 10 server

    String cmd = "ffmpeg -i " + source + " -ar 16000 -ac 1 " + pathwav + wavFileName + ".wav" ;

           System.out.println("cmd=> "+cmd);
           Process p = Runtime.getRuntime().exec(cmd);
           p.waitFor();
           System.out.println("Exit value: " + p.exitValue());
           if(p.exitValue()==0)
           {
               System.out.println(wavFileName + " is Created");
               String path = pathwav + wavFileName + ".wav";
               return path;
           }

    I Expect Wav File is creates in given path but it not created due to not execution of ffmpeg command